8000 [3.12] gh-91565: Update issue tracker URL in error message. (GH-117450) by miss-islington · Pull Request #117497 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.12] gh-91565: Update issue tracker URL in error message. (GH-117450) #117497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
< 8000 !-- -->
Diff view
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 8987a5c)

Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
  • Loading branch information
ezio-melotti authored and miss-islington committed Apr 3, 2024
commit 3c901bf21da17d9e36ee5d21360c2ba3152fcfc8
4 changes: 2 additions & 2 deletions Modules/selectmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
0