Commit 175af257 authored by Martin v. Löwis's avatar Martin v. Löwis

Export SIGINFO. Fixes #502077.

parent 9668b933
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment