0
0
mirror of https://github.com/python/cpython.git synced 2024-11-21 21:09:37 +01:00
cpython/Lib/datetime.py

14 lines
331 B
Python
Raw Permalink Normal View History

"""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")