Export SIGINFO. Fixes #502077.

This commit is contained in:
Martin v. Löwis 2002-01-12 11:43:25 +00:00
parent 9668b933e3
commit 175af2574f

View file

@ -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;