]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-91565: Update issue tracker URL in error message. (#117450)
authorEzio Melotti <ezio.melotti@gmail.com>
Wed, 3 Apr 2024 08:43:52 +0000 (10:43 +0200)
committerGitHub <noreply@github.com>
Wed, 3 Apr 2024 08:43:52 +0000 (10:43 +0200)
* Update issue tracker URL in commit message.

* Also update issue tracker URL in comment.

Modules/selectmodule.c

index f16173aafa7d3c8d2f113aa6edfa6c9ca663a863..6ea141ab1f91897d55bd9e1413b9920de50c1c92 100644 (file)
@@ -817,10 +817,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;