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 a5e2fb77eec063528b7724f205f93c6687f6d5a5
2 changes: 1 addition & 1 deletion Modules/signalmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,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