From 2ae0b0163a2e75a8b7ebfba192b44f6a83babfc8 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 9 Oct 2001 19:14:59 +0000 Subject: Fix __all__ to the current list of exported modules (must pass the tests in test_email.py). --- Lib/email/__init__.py | 7 ++++--- 1 file 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', -- cgit v0.12