[Python-checkins] gh-101041: Fix a misspelled name of `utctimetuple` in a doc warning (GH-101042)

miss-islington webhook-mailer at python.org
Sun Jan 15 15:36:37 EST 2023


https://github.com/python/cpython/commit/8e9d08b062bbabfe439bc73f82e3d7bb3800189e
commit: 8e9d08b062bbabfe439bc73f82e3d7bb3800189e
branch: main
author: Oleg Iarygin <oleg at arhadthedev.net>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2023-01-15T12:36:31-08:00
summary:

gh-101041: Fix a misspelled name of `utctimetuple` in a doc warning (GH-101042)

files:
M Doc/library/datetime.rst

diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
index 8bfed19d3fd2..eba8824f8351 100644
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -1351,7 +1351,7 @@ Instance methods:
 
       Because naive ``datetime`` objects are treated by many ``datetime`` methods
       as local times, it is preferred to use aware datetimes to represent times
-      in UTC; as a result, using ``utcfromtimetuple`` may give misleading
+      in UTC; as a result, using :meth:`datetime.utctimetuple` may give misleading
       results. If you have a naive ``datetime`` representing UTC, use
       ``datetime.replace(tzinfo=timezone.utc)`` to make it aware, at which point
       you can use :meth:`.datetime.timetuple`.



More information about the Python-checkins mailing list