Skip to content

gh-126662: naming consistency for signal.ItimerError #126712

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 2 commits into from
Jul 26, 2025
Merged
Changes from 1 commit
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
Diff view
Next Next commit
naming consistency for signal.ItimerError
  • Loading branch information
tungol committed Nov 12, 2024
commit f4231f5fa98e7f7e69b0196eaa3bd1e3b9c59b0a
2 changes: 1 addition & 1 deletion Modules/signalmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ signal_module_exec(PyObject *m)
modstate->ignore_handler = state->ignore_handler; // borrowed ref

#ifdef PYHAVE_ITIMER_ERROR
modstate->itimer_error = PyErr_NewException("signal.itimer_error",
modstate->itimer_error = PyErr_NewException("signal.ItimerError",
PyExc_OSError, NULL);
if (modstate->itimer_error == NULL) {
return -1;
Expand Down
Loading