[issue38341] Add SMTPNotSupportedError in the exports of smtplib

2019-10-01 Thread Norman Denayer
New submission from Norman Denayer : Long story short: smtplib.SMTPNotSupportedError seems the only exception not present in __all__ variable exposed by smtplib.py Context: I currently face an issue running mypy on one of my module: ...tools/email.py:46: error: Module has no attribute

[issue19461] RawConfigParser modifies empty strings unconditionally

2014-03-08 Thread Norman Denayer
Norman Denayer added the comment: I guess it's logical to have the value "" turned to '' in the reader, but I would expect the same transformation in the writer. If the write function would write "" for an empty string, will it solve your issue