mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	svn+ssh://pythondev@svn.python.org/python/trunk ........ r79468 | michael.foord | 2010-03-27 13:42:34 +0000 (Sat, 27 Mar 2010) | 1 line Rename the unittest test_suite function to not clash with a test module name (unittest.test.test_suite is now unambiguous). ........
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest.test
 | 
						|
 | 
						|
from test import support
 | 
						|
 | 
						|
 | 
						|
def test_main():
 | 
						|
    support.run_unittest(unittest.test.suite())
 | 
						|
    support.reap_children()
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    test_main()
 |