mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			148 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			148 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Compatibility helpers for the different Python versions."""
 | 
						|
 | 
						|
import sys
 | 
						|
 | 
						|
PY35 = sys.version_info >= (3, 5)
 | 
						|
PY352 = sys.version_info >= (3, 5, 2)
 |