Document most common signals (GH-19245)

Document individual signals (only the most common signals):
description, default action, availability.
This commit is contained in:
Victor Stinner 2020-03-31 19:13:10 +02:00 committed by GitHub
parent cd16661f90
commit 400e1dbcad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 107 additions and 1 deletions

View file

@ -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");
}