From: Barry Warsaw Date: Wed, 24 Jan 2001 04:16:09 +0000 (+0000) Subject: __all__: removed "error", "abort", "readonly", as these are not X-Git-Tag: v2.1a2~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f44939105ae03b7c7ce19f834c13685af27bf7d3;p=thirdparty%2FPython%2Fcpython.git __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? --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 229e5c6edcd6..dc07415f8f52 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