Skip to content

Commit d5fa437

Browse files
authored
gh-126662: naming consistency for signal.ItimerError (#126712)
1 parent d658b90 commit d5fa437

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)