blob: 7059c431634c68c374f806034d59bb2a520c12d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import unittest.test
from test import support
def test_main():
support.run_unittest(unittest.test.suite())
support.reap_children()
if __name__ == "__main__":
test_main()
|