diff options
author | Barry Warsaw <barry@python.org> | 2001-10-09 19:14:59 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-10-09 19:14:59 (GMT) |
commit | 2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8 (patch) | |
tree | 3c895e0ea752e5ca69848e0f8a3228948ce24351 /Lib/email/__init__.py | |
parent | a55d132f08447597c00a9d3702c7be628f3ae9c1 (diff) | |
download | cpython-2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8.zip cpython-2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8.tar.gz cpython-2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8.tar.bz2 |
Fix __all__ to the current list of exported modules (must pass the
tests in test_email.py).
Diffstat (limited to 'Lib/email/__init__.py')
-rw-r--r-- | Lib/email/__init__.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py index 4995114..c13495b 100644 --- a/Lib/email/__init__.py +++ b/Lib/email/__init__.py @@ -9,13 +9,14 @@ __version__ = '1.0' __all__ = ['Encoders', 'Errors', 'Generator', - 'Image', 'Iterators', + 'MIMEAudio', 'MIMEBase', + 'MIMEImage', + 'MIMEMessage', + 'MIMEText', 'Message', - 'MessageRFC822', 'Parser', - 'Text', 'Utils', 'message_from_string', 'message_from_file', |