Change a variable type to avoid signed overflow; replace repeated '19999' constant...
[python.git] / Lib / test / test_email_codecs.py
blob8951f81b119428f8eb0026f216bb4c102d031da1
1 # Copyright (C) 2002 Python Software Foundation
2 # email package unit tests for (optional) Asian codecs
4 # The specific tests now live in Lib/email/test
5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
9 def test_main():
10 suite = test_email_codecs.suite()
11 suite.addTest(test_email_codecs_renamed.suite())
12 test_support.run_unittest(suite)
14 if __name__ == '__main__':
15 test_main()