diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-31 17:44:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 17:44:28 (GMT) |
commit | 40e1b04e389f2f6d4d31079d5622fc27af6ebed7 (patch) | |
tree | 77c2258e78c8700f278bd78fcae1d2c2c6a0893a /Python | |
parent | 4ced9a7611ddfd923bd8f72aa61121d0e5aeb8fc (diff) | |
download | cpython-40e1b04e389f2f6d4d31079d5622fc27af6ebed7.zip cpython-40e1b04e389f2f6d4d31079d5622fc27af6ebed7.tar.gz cpython-40e1b04e389f2f6d4d31079d5622fc27af6ebed7.tar.bz2 |
Document most common signals (GH-19245) (GH-19257)
Document individual signals (only the most common signals):
description, default action, availability.
(cherry picked from commit 400e1dbcad93061f1f7ab4735202daaa5e731507)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index feb9285..27cebf3 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -2311,7 +2311,7 @@ init_signals(void) #ifdef SIGXFSZ PyOS_setsig(SIGXFSZ, SIG_IGN); #endif - PyOS_InitInterrupts(); /* May imply initsignal() */ + PyOS_InitInterrupts(); /* May imply init_signals() */ if (PyErr_Occurred()) { return _PyStatus_ERR("can't import signal"); } |