mirror of
https://github.com/python/cpython.git
synced 2025-07-31 07:04:42 +00:00
11 lines
206 B
Python
11 lines
206 B
Python
from test import test_support
|
|
import unittest.test
|
|
|
|
|
|
def test_main():
|
|
test_support.run_unittest(unittest.test.test_suite())
|
|
test_support.reap_children()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|