]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Clarify distinction between datetime module and class in deprecation messages...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 27 Aug 2023 14:16:21 +0000 (07:16 -0700)
committerGitHub <noreply@github.com>
Sun, 27 Aug 2023 14:16:21 +0000 (16:16 +0200)
Clarify distinction between datetime module and class in deprecation messages (GH-108073)
(cherry picked from commit 09343dba44cdb5c279ec51df34552ef451434958)

Co-authored-by: Clément Robert <cr52@protonmail.com>
Modules/_datetimemodule.c

index cbc331c7e94268ceee0c7d132f62074653673604..d8183c63f4497626150fae7d9cae0b7c68288e3d 100644 (file)
@@ -5145,9 +5145,9 @@ static PyObject *
 datetime_utcnow(PyObject *cls, PyObject *dummy)
 {
     if (PyErr_WarnEx(PyExc_DeprecationWarning,
-        "datetime.utcnow() is deprecated and scheduled for removal in a "
+        "datetime.datetime.utcnow() is deprecated and scheduled for removal in a "
         "future version. Use timezone-aware objects to represent datetimes "
-        "in UTC: datetime.now(datetime.UTC).", 1))
+        "in UTC: datetime.datetime.now(datetime.UTC).", 1))
     {
         return NULL;
     }
@@ -5188,9 +5188,9 @@ static PyObject *
 datetime_utcfromtimestamp(PyObject *cls, PyObject *args)
 {
     if (PyErr_WarnEx(PyExc_DeprecationWarning,
-        "datetime.utcfromtimestamp() is deprecated and scheduled for removal "
+        "datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal "
         "in a future version. Use timezone-aware objects to represent "
-        "datetimes in UTC: datetime.fromtimestamp(timestamp, datetime.UTC).", 1))
+        "datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).", 1))
     {
         return NULL;
     }