diff options
author | Barry Warsaw <barry@python.org> | 2001-01-24 04:16:09 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-01-24 04:16:09 +0000 |
commit | f44939105ae03b7c7ce19f834c13685af27bf7d3 (patch) | |
tree | 36645e6d6a1446f03dac977268ca2b62d8d8a2ee /Lib/imaplib.py | |
parent | 24f3acab3b2a766cde87696fb86bc1b1ccd5b051 (diff) | |
download | cpython-git-f44939105ae03b7c7ce19f834c13685af27bf7d3.tar.gz |
__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>
Diffstat (limited to 'Lib/imaplib.py')
-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 229e5c6edc..dc07415f8f 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 |