From f44939105ae03b7c7ce19f834c13685af27bf7d3 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 24 Jan 2001 04:16:09 +0000 Subject: __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? --- Lib/imaplib.py | 4 ++-- 1 file 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 -- cgit v0.12