Exceptions raised during renaming in rotating file handlers are now passed to handleE...
[python.git] / Lib / test / test_distutils.py
blobfcd792d945a241ab2447ef70f316770fe7b6075a
1 """Tests for distutils.
3 The tests for distutils are defined in the distutils.tests package;
4 the test_suite() function there returns a test suite that's ready to
5 be run.
6 """
8 import distutils.tests
9 import test.test_support
12 def test_main():
13 test.test_support.run_unittest(distutils.tests.test_suite())
16 if __name__ == "__main__":
17 test_main()