diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-15 22:15:14 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-15 22:15:14 +0000 |
commit | d95497014dfaf13362efef69cae5b0ef1343b91a (patch) | |
tree | 983475a2129c410599fb07bf777a599ad23dcaac /Lib/smtplib.py | |
parent | e57795f35cfdda6978125fde160b4685127d92aa (diff) | |
download | cpython-d95497014dfaf13362efef69cae5b0ef1343b91a.tar.gz |
bunch more __all__ lists
also modified check_all function to suppress all warnings since they aren't
relevant to what this test is doing (allows quiet checking of regsub, for
instance)
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 1af406883a..f1e4a27ff3 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -44,6 +44,11 @@ import re import rfc822 import types +__all__ = ["SMTPException","SMTPServerDisconnected","SMTPResponseException", + "SMTPSenderRefused","SMTPRecipientsRefused","SMTPDataError", + "SMTPConnectError","SMTPHeloError","quoteaddr","quotedata", + "SMTP"] + SMTP_PORT = 25 CRLF="\r\n" |