diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-06 01:07:02 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-06 01:07:02 (GMT) |
commit | 269b83bc05452f4f54fa9df5a76608f88da544fe (patch) | |
tree | 3463eb160b6a7a04a8a1a9aebc79075d9390f91e /Lib/nntplib.py | |
parent | 46fa39ab1d1e2f14c1b44c5e81c34c5f6cfb9a58 (diff) | |
download | cpython-269b83bc05452f4f54fa9df5a76608f88da544fe.zip cpython-269b83bc05452f4f54fa9df5a76608f88da544fe.tar.gz cpython-269b83bc05452f4f54fa9df5a76608f88da544fe.tar.bz2 |
added several more __all__ lists
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r-- | Lib/nntplib.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py index a8aba48..eddd31a 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -33,7 +33,10 @@ import re import socket import string - +__all__ = ["NNTP","NNTPReplyError","NNTPTemporaryError", + "NNTPPermanentError","NNTPProtocolError","NNTPDataError", + "error_reply","error_temp","error_perm","error_proto", + "error_data",] # Exceptions raised when an error or invalid response is received class NNTPError(Exception): |