mirror of
				https://github.com/python/cpython.git
				synced 2025-10-28 04:04:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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()
 | 
