diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2024-09-09 02:39:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 02:39:23 (GMT) |
commit | 93b61bc1245fb318a11d3d1a0808174b3c1bc333 (patch) | |
tree | 72ed7f598faf4e3b46d57a72e619d105df946cad /Lib/datetime.py | |
parent | aa3f11f80a644dac7184e8546ddfcc9b68be364c (diff) | |
download | cpython-93b61bc1245fb318a11d3d1a0808174b3c1bc333.zip cpython-93b61bc1245fb318a11d3d1a0808174b3c1bc333.tar.gz cpython-93b61bc1245fb318a11d3d1a0808174b3c1bc333.tar.bz2 |
gh-123843: Remove broken links to the Zope DateTimeWiki (#123846)
Co-authored-by: Conrad Bhuiyan-Volkoff <hi@cbv.im>
Diffstat (limited to 'Lib/datetime.py')
-rw-r--r-- | Lib/datetime.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/datetime.py b/Lib/datetime.py index b4f7bd0..14f3055 100644 --- a/Lib/datetime.py +++ b/Lib/datetime.py @@ -1,9 +1,13 @@ +"""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 * - from _datetime import __doc__ # noqa: F401 except ImportError: from _pydatetime import * - from _pydatetime import __doc__ # noqa: F401 __all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo", "MINYEAR", "MAXYEAR", "UTC") |