diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 08:34:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 08:34:42 (GMT) |
commit | dd02a696e55b450413e765e698e653d781ca4205 (patch) | |
tree | 56559f73fe0771d9354abcd0131fa113f5975bc1 /Modules/signalmodule.c | |
parent | 5baec4aea6821256f5d1785a6bd596fab069f1b6 (diff) | |
download | cpython-dd02a696e55b450413e765e698e653d781ca4205.zip cpython-dd02a696e55b450413e765e698e653d781ca4205.tar.gz cpython-dd02a696e55b450413e765e698e653d781ca4205.tar.bz2 |
Fix typos in the Modules directory (GH-28761)
Diffstat (limited to 'Modules/signalmodule.c')
-rw-r--r-- | Modules/signalmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 8b7ef2c..d5e6a43 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -1595,7 +1595,7 @@ signal_get_set_handlers(signal_state_t *state, PyObject *mod_dict) Py_XDECREF(old_func); } - // Instal Python SIGINT handler which raises KeyboardInterrupt + // Install Python SIGINT handler which raises KeyboardInterrupt PyObject* sigint_func = get_handler(SIGINT); if (sigint_func == state->default_handler) { PyObject *int_handler = PyMapping_GetItemString(mod_dict, |