Require implementations for warnings.showwarning() support the 'line' argument.
[python.git] / Lib / test / test_email.py
blobcb4ee6083e43ea8a2b04860f31d6f1dd75c65ba6
1 # Copyright (C) 2001,2002 Python Software Foundation
2 # email package unit tests
4 # The specific tests now live in Lib/email/test
5 from email.test.test_email import suite
6 from test import test_support
8 def test_main():
9 test_support.run_unittest(suite())
11 if __name__ == '__main__':
12 test_main()