cpython/Lib/test/test_importlib.py
Brett Cannon b49c70c7d3 Importlib was using custom code to discover all test modules in importlib.test.
This has now been removed in favor of using unittest's test discovery code in
TestLoader.discover().
2009-07-15 04:08:33 +00:00

6 lines
91 B
Python

from importlib.test.__main__ import test_main
if __name__ == '__main__':
test_main()