]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-91565: Update issue tracker URL in error message. (GH-117450) (#117497)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 3 Apr 2024 09:10:12 +0000 (11:10 +0200)
committerGitHub <noreply@github.com>
Wed, 3 Apr 2024 09:10:12 +0000 (11:10 +0200)
gh-91565: Update issue tracker URL in error message. (GH-117450)

* Update issue tracker URL in commit message.

* Also update issue tracker URL in comment.
(cherry picked from commit 8987a5c809343ae0dd2b8e607bf2c32a87773127)

Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Modules/selectmodule.c

index b7c6b1b539904f522b969aff9e5fb17f8e5c092a..97f1db20f677dfde3f79b4a01bea79f48f2c903a 100644 (file)
@@ -818,10 +818,10 @@ static int devpoll_flush(devpollObject *self)
         ** clear what to do if a partial write occurred. For now, raise
         ** an exception and see if we actually found this problem in
         ** the wild.
-        ** See http://bugs.python.org/issue6397.
+        ** See https://github.com/python/cpython/issues/50646.
         */
         PyErr_Format(PyExc_OSError, "failed to write all pollfds. "
-                "Please, report at http://bugs.python.org/. "
+                "Please, report at https://github.com/python/cpython/issues/. "
                 "Data to report: Size tried: %d, actual size written: %d.",
                 size, n);
         return -1;