mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| if __name__ == '__main__':
 | |
|     import sys
 | |
|     rc = 1
 | |
|     try:
 | |
|         import venv
 | |
|         venv.main()
 | |
|         rc = 0
 | |
|     except Exception as e:
 | |
|         print('Error: %s' % e, file=sys.stderr)
 | |
|     sys.exit(rc)
 | 
