diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-28 11:19:11 +0200 |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-04-28 11:19:11 +0200 |
commit | aa31d52b807dbcaae6fa3c329dbc9444344fc21e (patch) | |
tree | 5893e96c1103e430084a3105d6076fceb414e3ac | |
parent | 9aa13959166a209fd25ccf6df01d8de781bb0edb (diff) | |
download | cpython-git-aa31d52b807dbcaae6fa3c329dbc9444344fc21e.tar.gz |
Issue #14448: add reference to IANA timezone database; thanks to Georg/Nick suggestions
-rw-r--r-- | Doc/library/datetime.rst | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index b8e9318d75..8be8974a41 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1524,11 +1524,18 @@ EST (fixed offset -5 hours), or only EDT (fixed offset -4 hours)). .. seealso:: `pytz <http://pypi.python.org/pypi/pytz/>`_ - The Standard Library has no :class:`tzinfo` instances except for UTC, but - it exists a third-party library which brings Olson timezone database to - Python: `pytz`. - - `pytz` contains up-to-date information and its usage is recommended. + The standard library has no :class:`tzinfo` instances except for UTC, but + there exists a third-party library which brings the *IANA timezone + database* (also known as the Olson database) to Python: *pytz*. + + *pytz* contains up-to-date information and its usage is recommended. + + `IANA timezone database <http://www.iana.org/time-zones>`_ + The Time Zone Database (often called tz or zoneinfo) contains code and + data that represent the history of local time for many representative + locations around the globe. It is updated periodically to reflect changes + made by political bodies to time zone boundaries, UTC offsets, and + daylight-saving rules. .. _strftime-strptime-behavior: |