mirror of https://github.com/python/cpython
test__all__(): Fix the import list.
This commit is contained in:
parent
6bfa2e6892
commit
0ac885e821
|
@ -1604,10 +1604,10 @@ class TestMiscellaneous(unittest.TestCase):
|
||||||
all = module.__all__
|
all = module.__all__
|
||||||
all.sort()
|
all.sort()
|
||||||
self.assertEqual(all, ['Charset', 'Encoders', 'Errors', 'Generator',
|
self.assertEqual(all, ['Charset', 'Encoders', 'Errors', 'Generator',
|
||||||
'Header', 'Iterators', 'MIMEAudio',
|
'Header', 'Iterators', 'MIMEAudio', 'MIMEBase',
|
||||||
'MIMEBase', 'MIMEImage', 'MIMEMessage',
|
'MIMEImage', 'MIMEMessage', 'MIMEMultipart',
|
||||||
'MIMEText', 'Message', 'Parser',
|
'MIMENonMultipart', 'MIMEText', 'Message',
|
||||||
'Utils', 'base64MIME',
|
'Parser', 'Utils', 'base64MIME',
|
||||||
'message_from_file', 'message_from_string',
|
'message_from_file', 'message_from_string',
|
||||||
'quopriMIME'])
|
'quopriMIME'])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue