summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-04-03 09:10:12 (GMT)
committerGitHub <noreply@github.com>2024-04-03 09:10:12 (GMT)
commit06ba6c86d2f05182b6d54f26ce80e40ea97c2d19 (patch)
tree2d194251e2d35358d85e396d9393bd9d9051dcef /Modules
parent75b3139b53ea0377ae0e933985ee86c8f6ad5a6c (diff)
downloadcpython-06ba6c86d2f05182b6d54f26ce80e40ea97c2d19.zip
cpython-06ba6c86d2f05182b6d54f26ce80e40ea97c2d19.tar.gz
cpython-06ba6c86d2f05182b6d54f26ce80e40ea97c2d19.tar.bz2
[3.12] gh-91565: Update issue tracker URL in error message. (GH-117450) (#117497)
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>
Diffstat (limited to 'Modules')
-rw-r--r--Modules/selectmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index b7c6b1b..97f1db2 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -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;