mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +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)
 |