Skip to content

Commit c1cb785

Browse files
[3.14] gh-126662: naming consistency for signal.ItimerError (GH-126712) (#137122)
gh-126662: naming consistency for `signal.ItimerError` (GH-126712) (cherry picked from commit d5fa437) Co-authored-by: Stephen Morton <[email protected]>
1 parent 98ca0b3 commit c1cb785

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
@@ -1623,7 +1623,7 @@ signal_module_exec(PyObject *m)
16231623
modstate->ignore_handler = state->ignore_handler; // borrowed ref
16241624

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

0 commit comments

Comments
 (0)