mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			238 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Main entry point"""
 | |
| 
 | |
| import sys
 | |
| if sys.argv[0].endswith("__main__.py"):
 | |
|     sys.argv[0] = "python -m unittest"
 | |
| 
 | |
| __unittest = True
 | |
| 
 | |
| from .main import main, TestProgram, USAGE_AS_MAIN
 | |
| TestProgram.USAGE = USAGE_AS_MAIN
 | |
| 
 | |
| main(module=None)
 | 
