diff options
author | nde <denayer.norman@gmail.com> | 2019-10-05 00:30:58 (GMT) |
---|---|---|
committer | Abhilash Raj <maxking@users.noreply.github.com> | 2019-10-05 00:30:58 (GMT) |
commit | 3faf826e5879536d2272f1a51c58965a16827f81 (patch) | |
tree | ccbc528de77279927feb0abf806b2cc2c3fb3c3d /Lib/smtplib.py | |
parent | c02b41b1fb115c87693530ea6a480b2e15460424 (diff) | |
download | cpython-3faf826e5879536d2272f1a51c58965a16827f81.zip cpython-3faf826e5879536d2272f1a51c58965a16827f81.tar.gz cpython-3faf826e5879536d2272f1a51c58965a16827f81.tar.bz2 |
bpo-38341: Add SMTPNotSupportedError in the exports of smtplib (#16525)
Add SMTPNotSupportedError in the exports of smtplib
Co-Authored-By: Brandt Bucher <brandtbucher@gmail.com>
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 43a00d9..6513842e 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -54,7 +54,7 @@ import datetime import sys from email.base64mime import body_encode as encode_base64 -__all__ = ["SMTPException", "SMTPServerDisconnected", "SMTPResponseException", +__all__ = ["SMTPException", "SMTPNotSupportedError", "SMTPServerDisconnected", "SMTPResponseException", "SMTPSenderRefused", "SMTPRecipientsRefused", "SMTPDataError", "SMTPConnectError", "SMTPHeloError", "SMTPAuthenticationError", "quoteaddr", "quotedata", "SMTP"] |