David Gingrich

Results 3 issues of David Gingrich

`ConfigKeys` says `extra-dicts` takes a list: ```python >>> import aspell >>> aspell.ConfigKeys()['extra-dicts'] ('list', [], 'extra dictionaries to use') ``` But passing it as a list doesn't work: ```python >>> aspell.Speller(('extra-dicts',...

bug

`smtplib` in old python versions doesn't check the response code of `STARTTLS`, allowing a attacker to force cleartext communication, see https://github.com/tintinweb/pub/tree/master/pocs/cve-2016-0772 . Patch in PR 135: https://github.com/mattupstate/flask-mail/pull/135

Same behavior as in latest `smtplib`: https://github.com/python/cpython/blob/master/Lib/smtplib.py#L731 Tested via unit tests against CPython 2.6, 2.7 and 3.4.