mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Main entry point"""
 | |
| 
 | |
| import sys
 | |
| if sys.argv[0].endswith("__main__.py"):
 | |
|     sys.argv[0] = "unittest"
 | |
| 
 | |
| __unittest = True
 | |
| 
 | |
| 
 | |
| from .main import main
 | |
| main(module=None)
 | 
