https://github.com/python/cpython/commit/8987a5c809343ae0dd2b8e607bf2c32a87773127
commit: 8987a5c809343ae0dd2b8e607bf2c32a87773127
branch: main
author: Ezio Melotti <[email protected]>
committer: ezio-melotti <[email protected]>
date: 2024-04-03T10:43:52+02:00
summary:

gh-91565: Update issue tracker URL in error message. (#117450)

* Update issue tracker URL in commit message.

* Also update issue tracker URL in comment.

files:
M Modules/selectmodule.c

diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index f16173aafa7d3c..6ea141ab1f9189 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -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;

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to