mirror of
https://github.com/python/cpython.git
synced 2024-11-21 21:09:37 +01:00
93b61bc124
Co-authored-by: Conrad Bhuiyan-Volkoff <hi@cbv.im>
14 lines
331 B
Python
14 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")
|