mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Export SIGINFO. Fixes #502077.
This commit is contained in:
parent
9668b933e3
commit
175af2574f
1 changed files with 5 additions and 0 deletions
|
@ -543,6 +543,11 @@ initsignal(void)
|
|||
x = PyInt_FromLong(SIGXFSZ);
|
||||
PyDict_SetItemString(d, "SIGXFSZ", x);
|
||||
Py_XDECREF(x);
|
||||
#endif
|
||||
#ifdef SIGINFO
|
||||
x = PyInt_FromLong(SIGINFO);
|
||||
PyDict_SetItemString(d, "SIGINFO", x);
|
||||
Py_XDECREF(x);
|
||||
#endif
|
||||
if (!PyErr_Occurred())
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue