Skip to content
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
Diff view
gh-126662: naming consistency for signal.ItimerError (GH-126712)
(cherry picked from commit d5fa437)

Co-authored-by: Stephen Morton <[email protected]>
  • Loading branch information
tungol authored and miss-islington committed Jul 26, 2025
commit 183ee835cee2b08ef0383e83cf329022456833fc
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