diff options
author | Raymond Hettinger <python@rcn.com> | 2002-10-30 06:20:37 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-10-30 06:20:37 (GMT) |
commit | d8ea2e080f118bfcf6200cccf659ecb46b41f505 (patch) | |
tree | b5e49d615d246fa6ea560998b67d64418db3c8ad /Lib | |
parent | a853cc6647fdbe5d880e5c4f63d499dd61cee271 (diff) | |
download | cpython-d8ea2e080f118bfcf6200cccf659ecb46b41f505.zip cpython-d8ea2e080f118bfcf6200cccf659ecb46b41f505.tar.gz cpython-d8ea2e080f118bfcf6200cccf659ecb46b41f505.tar.bz2 |
Added missing class to __all__.
Diffstat (limited to 'Lib')
-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 91e9cb9..75878b9 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -22,7 +22,7 @@ __version__ = "2.53" import binascii, re, socket, time, random, sys -__all__ = ["IMAP4", "Internaldate2tuple", +__all__ = ["IMAP4", "IMAP4_SSL", "Internaldate2tuple", "Int2AP", "ParseFlags", "Time2Internaldate"] # Globals |