From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 20 Jan 2023 05:06:47 +0000 (-0800) Subject: gh-101041: Fix a misspelled name of `utctimetuple` in a doc warning (GH-101042) X-Git-Tag: v3.11.2~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1998ea69c7739bc833baca47849f33e84fa337df;p=thirdparty%2FPython%2Fcpython.git gh-101041: Fix a misspelled name of `utctimetuple` in a doc warning (GH-101042) (cherry picked from commit 8e9d08b062bbabfe439bc73f82e3d7bb3800189e) Co-authored-by: Oleg Iarygin --- diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index e700b0a1347a..c7b96671eff7 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1350,7 +1350,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`.