mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +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. ........
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			286 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest.test
 | 
						|
 | 
						|
from test import support
 | 
						|
 | 
						|
 | 
						|
def test_main():
 | 
						|
    # used by regrtest
 | 
						|
    support.run_unittest(unittest.test.suite())
 | 
						|
    support.reap_children()
 | 
						|
 | 
						|
def load_tests(*_):
 | 
						|
    # used by unittest
 | 
						|
    return unittest.test.suite()
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    test_main()
 |