diff options
author | Barry Warsaw <barry@python.org> | 2002-10-01 17:57:06 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-10-01 17:57:06 (GMT) |
commit | 0ac885e8216436fb000da97702a9cf4c53b710f2 (patch) | |
tree | a3a4f8c9bd6458d7081b36e83a5228f681da24d4 /Lib/email | |
parent | 6bfa2e6892c075a52e7fe6db2cf64a655bad5aaf (diff) | |
download | cpython-0ac885e8216436fb000da97702a9cf4c53b710f2.zip cpython-0ac885e8216436fb000da97702a9cf4c53b710f2.tar.gz cpython-0ac885e8216436fb000da97702a9cf4c53b710f2.tar.bz2 |
test__all__(): Fix the import list.
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/test/test_email.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 4599156..926c6bf 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -1604,10 +1604,10 @@ class TestMiscellaneous(unittest.TestCase): all = module.__all__ all.sort() self.assertEqual(all, ['Charset', 'Encoders', 'Errors', 'Generator', - 'Header', 'Iterators', 'MIMEAudio', - 'MIMEBase', 'MIMEImage', 'MIMEMessage', - 'MIMEText', 'Message', 'Parser', - 'Utils', 'base64MIME', + 'Header', 'Iterators', 'MIMEAudio', 'MIMEBase', + 'MIMEImage', 'MIMEMessage', 'MIMEMultipart', + 'MIMENonMultipart', 'MIMEText', 'Message', + 'Parser', 'Utils', 'base64MIME', 'message_from_file', 'message_from_string', 'quopriMIME']) |