From: Barry Warsaw Date: Tue, 9 Oct 2001 19:14:59 +0000 (+0000) Subject: Fix __all__ to the current list of exported modules (must pass the X-Git-Tag: v2.2.1c1~1375 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8;p=python Fix __all__ to the current list of exported modules (must pass the tests in test_email.py). --- diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py index 4995114008..c13495b4b8 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',