Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6a336f6484a13c01516b6bfc3b767075cc2cb4f7 authored by Benjamin Peterson on 03 July 2010, 13:57:30 UTC
move sections
Tip revision: 6a336f6
test_unittest.py
import unittest.test

from test import test_support


def test_main():
    test_support.run_unittest(unittest.test.suite())
    test_support.reap_children()


if __name__ == "__main__":
    test_main()
back to top