mirror of
https://github.com/python/cpython.git
synced 2025-09-14 12:46:49 +00:00

svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87377 | ezio.melotti | 2010-12-18 18:31:58 +0100 (Sat, 18 Dec 2010) | 1 line Use lowercase true/false in assertTrue/assertFalse messages. ........
12 lines
202 B
Python
12 lines
202 B
Python
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()
|