summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2024-04-03 08:43:52 (GMT)
committerGitHub <noreply@github.com>2024-04-03 08:43:52 (GMT)
commit8987a5c809343ae0dd2b8e607bf2c32a87773127 (patch)
treeb14ef83235d8017dda3a12bec5af578a344dd13f
parent444156ede44204ef16c9d3cfcb03a637535fd5bf (diff)
downloadcpython-8987a5c809343ae0dd2b8e607bf2c32a87773127.zip
cpython-8987a5c809343ae0dd2b8e607bf2c32a87773127.tar.gz
cpython-8987a5c809343ae0dd2b8e607bf2c32a87773127.tar.bz2
gh-91565: Update issue tracker URL in error message. (#117450)
* Update issue tracker URL in commit message. * Also update issue tracker URL in comment.
-rw-r--r--Modules/selectmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index f16173a..6ea141a 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;