diff options
author | Barry Warsaw <barry@python.org> | 2001-01-24 04:16:09 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-01-24 04:16:09 (GMT) |
commit | f44939105ae03b7c7ce19f834c13685af27bf7d3 (patch) | |
tree | 36645e6d6a1446f03dac977268ca2b62d8d8a2ee | |
parent | 24f3acab3b2a766cde87696fb86bc1b1ccd5b051 (diff) | |
download | cpython-f44939105ae03b7c7ce19f834c13685af27bf7d3.zip cpython-f44939105ae03b7c7ce19f834c13685af27bf7d3.tar.gz cpython-f44939105ae03b7c7ce19f834c13685af27bf7d3.tar.bz2 |
__all__: removed "error", "abort", "readonly", as these are not
exportable module attributes (they're attributes on the IMAP class).
Fixed the case typo on Time2Internaldate.
Does anybody run the test suite any more? <wink>
-rw-r--r-- | Lib/imaplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 229e5c6..dc07415 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -18,8 +18,8 @@ __version__ = "2.39" import binascii, re, socket, string, time, random, sys -__all__ = ["IMAP4","error","abort","readonly","Internaldate2tuple", - "Int2AP","ParseFlags","Time2InternalDate"] +__all__ = ["IMAP4", "Internaldate2tuple", + "Int2AP", "ParseFlags", "Time2Internaldate"] # Globals |