summaryrefslogtreecommitdiffstats
path: root/Python/pylifecycle.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-03-31 17:13:10 (GMT)
committerGitHub <noreply@github.com>2020-03-31 17:13:10 (GMT)
commit400e1dbcad93061f1f7ab4735202daaa5e731507 (patch)
treed82ab77d754ce10d7685cf1fde1b9c9a4aed917e /Python/pylifecycle.c
parentcd16661f903153ecac55f190ed682e576c5deb24 (diff)
downloadcpython-400e1dbcad93061f1f7ab4735202daaa5e731507.zip
cpython-400e1dbcad93061f1f7ab4735202daaa5e731507.tar.gz
cpython-400e1dbcad93061f1f7ab4735202daaa5e731507.tar.bz2
Document most common signals (GH-19245)
Document individual signals (only the most common signals): description, default action, availability.
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r--Python/pylifecycle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index 4c27738..2d5cb0f 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -2433,7 +2433,7 @@ init_signals(PyThreadState *tstate)
#ifdef SIGXFSZ
PyOS_setsig(SIGXFSZ, SIG_IGN);
#endif
- PyOS_InitInterrupts(); /* May imply initsignal() */
+ PyOS_InitInterrupts(); /* May imply init_signals() */
if (_PyErr_Occurred(tstate)) {
return _PyStatus_ERR("can't import signal");
}