diff options
author | Piers Lauder <piers@cs.su.oz.au> | 2004-06-02 00:42:36 (GMT) |
---|---|---|
committer | Piers Lauder <piers@cs.su.oz.au> | 2004-06-02 00:42:36 (GMT) |
commit | 0659452b8b273fb04fc6efee2f5b262837251818 (patch) | |
tree | 7067b9ee063a7b38058abee6e17923f395807c29 | |
parent | 1f4bcf9edd88600ce99cfbeef16bcea810a5826f (diff) | |
download | cpython-0659452b8b273fb04fc6efee2f5b262837251818.zip cpython-0659452b8b273fb04fc6efee2f5b262837251818.tar.gz cpython-0659452b8b273fb04fc6efee2f5b262837251818.tar.bz2 |
Added IMAP4_stream to __all__
-rw-r--r-- | Lib/imaplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 3dd7e07..8ccf8b8 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -23,7 +23,7 @@ __version__ = "2.54" import binascii, os, random, re, socket, sys, time -__all__ = ["IMAP4", "IMAP4_SSL", "Internaldate2tuple", +__all__ = ["IMAP4", "IMAP4_SSL", "IMAP4_stream", "Internaldate2tuple", "Int2AP", "ParseFlags", "Time2Internaldate"] # Globals |