*** /home/trentm/main/contrib/python/dist/src/Modules/signalmodule.c Thu Jun 1 00:13:39 2000 --- /home/trentm/main/Apps/Perlium/Python/dist/src/Modules/signalmodule.c Fri Jun 2 15:53:43 2000 *************** *** 356,366 **** /* Add some symbolic constants to the module */ d = PyModule_GetDict(m); ! x = DefaultHandler = PyInt_FromLong((long)SIG_DFL); if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0) goto finally; ! x = IgnoreHandler = PyInt_FromLong((long)SIG_IGN); if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0) goto finally; --- 356,366 ---- /* Add some symbolic constants to the module */ d = PyModule_GetDict(m); ! x = DefaultHandler = PyLong_FromVoidPtr(SIG_DFL); if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0) goto finally; ! x = IgnoreHandler = PyLong_FromVoidPtr(SIG_IGN); if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0) goto finally;