forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-123843: Remove broken links to the Zope DateTimeWiki
- Loading branch information
Showing
4 changed files
with
10 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
"""Concrete date/time and related types. | ||
See http://www.iana.org/time-zones/repository/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") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters