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.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'])
|
||||
|
||||
|
|
Loading…
Reference in New Issue