summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-04-28 09:19:37 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-04-28 09:19:37 (GMT)
commit100b889ccd742022b4eaeee29f68e75bdcecdc3b (patch)
tree7c46aa4e7fdf6a64332f56415e277f154d0b7bff /Doc/library
parentb05ac864f048bfeb184e93be71aebd6223a76eec (diff)
downloadcpython-100b889ccd742022b4eaeee29f68e75bdcecdc3b.zip
cpython-100b889ccd742022b4eaeee29f68e75bdcecdc3b.tar.gz
cpython-100b889ccd742022b4eaeee29f68e75bdcecdc3b.tar.bz2
Issue #14448: add reference to IANA timezone database; thanks to Georg/Nick suggestions
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/datetime.rst17
1 files changed, 12 insertions, 5 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
index b80c6a8..1c4e9b9 100644
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -1560,11 +1560,18 @@ only 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.
.. _datetime-timezone: