mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 10:26:02 +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")
 | 
