Skip to content

Commit 89f256e

Browse files
[3.13] gh-126662: naming consistency for signal.ItimerError (GH-126712) (#137123)
gh-126662: naming consistency for `signal.ItimerError` (GH-126712) (cherry picked from commit d5fa437) Co-authored-by: Stephen Morton <[email protected]>
1 parent 2b84dfd commit 89f256e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/signalmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ signal_module_exec(PyObject *m)
16211621
modstate->ignore_handler = state->ignore_handler; // borrowed ref
16221622

16231623
#ifdef PYHAVE_ITIMER_ERROR
1624-
modstate->itimer_error = PyErr_NewException("signal.itimer_error",
1624+
modstate->itimer_error = PyErr_NewException("signal.ItimerError",
16251625
PyExc_OSError, NULL);
16261626
if (modstate->itimer_error == NULL) {
16271627
return -1;

0 commit comments

Comments
 (0)