From 8cef526a871695f8df4fac167139bbf3292396db Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 19 Oct 2021 11:35:34 -0700 Subject: bpo-45515: Add zoneinfo to the datetime documentation (GH-29038) (GH-29065) We should have done this way back when 3.9 was released, but it fell off the radar. Co-authored-by: Paul Ganssle (cherry picked from commit 8e40ca127fa92d6113617c80710e0a077977a84d) --- Doc/library/datetime.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Doc/library/datetime.rst') diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 196aa84473..0f8b70cded 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -27,6 +27,9 @@ on efficient attribute extraction for output formatting and manipulation. Module :mod:`time` Time access and conversions. + Module :mod:`zoneinfo` + Concrete time zones representing the IANA time zone database. + Package `dateutil `_ Third-party library with expanded time zone and parsing support. @@ -2174,14 +2177,13 @@ only EST (fixed offset -5 hours), or only EDT (fixed offset -4 hours)). .. seealso:: - `dateutil.tz `_ + :mod:`zoneinfo` The :mod:`datetime` module has a basic :class:`timezone` class (for handling arbitrary fixed offsets from UTC) and its :attr:`timezone.utc` attribute (a UTC timezone instance). - *dateutil.tz* library brings the *IANA timezone database* - (also known as the Olson database) to Python, and its usage is - recommended. + ``zoneinfo`` brings the *IANA timezone database* (also known as the Olson + database) to Python, and its usage is recommended. `IANA timezone database `_ The Time Zone Database (often called tz, tzdata or zoneinfo) contains code -- cgit v1.2.1