diff options
Diffstat (limited to 'Modules/fpectlmodule.c')
-rw-r--r-- | Modules/fpectlmodule.c | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/Modules/fpectlmodule.c b/Modules/fpectlmodule.c index 74354ba..d3518f5 100644 --- a/Modules/fpectlmodule.c +++ b/Modules/fpectlmodule.c @@ -90,7 +90,8 @@ static Sigfunc sigfpe_handler; static void fpe_reset(Sigfunc *); static PyObject *fpe_error; -PyMODINIT_FUNC initfpectl(void); + +PyMODINIT_FUNC PyInit_fpectl(void); static PyObject *turnon_sigfpe (PyObject *self,PyObject *args); static PyObject *turnoff_sigfpe (PyObject *self,PyObject *args); @@ -286,16 +287,29 @@ static void sigfpe_handler(int signo) } } -PyMODINIT_FUNC initfpectl(void) +static struct PyModuleDef fpectlmodule = { + PyModuleDef_HEAD_INIT, + "fpectl", + NULL, + -1, + fpectl_methods, + NULL, + NULL, + NULL, + NULL +}; + +PyMODINIT_FUNC PyInit_fpectl(void) { PyObject *m, *d; - m = Py_InitModule("fpectl", fpectl_methods); + m = PyModule_Create("fpectl", fpectl_methods); if (m == NULL) - return; + return NULL; d = PyModule_GetDict(m); fpe_error = PyErr_NewException("fpectl.error", NULL, NULL); if (fpe_error != NULL) PyDict_SetItemString(d, "error", fpe_error); + return m; } #ifdef __cplusplus |