mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
12 lines
192 B
Python
12 lines
192 B
Python
import unittest.test
|
|
|
|
from test import support
|
|
|
|
|
|
def test_main():
|
|
support.run_unittest(unittest.test.test_suite())
|
|
support.reap_children()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|