mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Specific date/time and related types.
 | 
						|
 | 
						|
See https://data.iana.org/time-zones/tz-link.html for
 | 
						|
time zone and DST data sources.
 | 
						|
"""
 | 
						|
 | 
						|
try:
 | 
						|
    from _datetime import *
 | 
						|
except ImportError:
 | 
						|
    from _pydatetime import *
 | 
						|
 | 
						|
__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",
 | 
						|
           "MINYEAR", "MAXYEAR", "UTC")
 |