summaryrefslogtreecommitdiffstats
path: root/Lib/email/__init__.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-10-09 19:14:59 (GMT)
committerBarry Warsaw <barry@python.org>2001-10-09 19:14:59 (GMT)
commit2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8 (patch)
tree3c895e0ea752e5ca69848e0f8a3228948ce24351 /Lib/email/__init__.py
parenta55d132f08447597c00a9d3702c7be628f3ae9c1 (diff)
downloadcpython-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__.py7
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',