Skip to content
Snippets Groups Projects
Commit 2ac64d33 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Python 3 compatibility

parent c2b91fd7
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#undef NO_IMPORT_ARRAY #undef NO_IMPORT_ARRAY
#endif #endif
#include <xbob.blitz/capi.h> #include <xbob.blitz/capi.h>
#include <xbob.blitz/cleanup.h>
#include "histogram.h" #include "histogram.h"
#include "linsolve.h" #include "linsolve.h"
...@@ -512,69 +513,60 @@ static PyModuleDef module_definition = { ...@@ -512,69 +513,60 @@ static PyModuleDef module_definition = {
}; };
#endif #endif
PyMODINIT_FUNC XBOB_EXT_ENTRY_NAME (void) { static PyObject* create_module (void) {
PyBobMathLpInteriorPoint_Type.tp_new = PyType_GenericNew; PyBobMathLpInteriorPoint_Type.tp_new = PyType_GenericNew;
if (PyType_Ready(&PyBobMathLpInteriorPoint_Type) < 0) return if (PyType_Ready(&PyBobMathLpInteriorPoint_Type) < 0) return 0;
# if PY_VERSION_HEX >= 0x03000000
0
# endif
;
PyBobMathLpInteriorPointShortstep_Type.tp_base = &PyBobMathLpInteriorPoint_Type; PyBobMathLpInteriorPointShortstep_Type.tp_base = &PyBobMathLpInteriorPoint_Type;
if (PyType_Ready(&PyBobMathLpInteriorPointShortstep_Type) < 0) return if (PyType_Ready(&PyBobMathLpInteriorPointShortstep_Type) < 0) return 0;
# if PY_VERSION_HEX >= 0x03000000
0
# endif
;
PyBobMathLpInteriorPointPredictorCorrector_Type.tp_base = &PyBobMathLpInteriorPoint_Type; PyBobMathLpInteriorPointPredictorCorrector_Type.tp_base = &PyBobMathLpInteriorPoint_Type;
if (PyType_Ready(&PyBobMathLpInteriorPointPredictorCorrector_Type) < 0) return if (PyType_Ready(&PyBobMathLpInteriorPointPredictorCorrector_Type) < 0) return 0;
# if PY_VERSION_HEX >= 0x03000000
0
# endif
;
PyBobMathLpInteriorPointLongstep_Type.tp_base = &PyBobMathLpInteriorPoint_Type; PyBobMathLpInteriorPointLongstep_Type.tp_base = &PyBobMathLpInteriorPoint_Type;
if (PyType_Ready(&PyBobMathLpInteriorPointLongstep_Type) < 0) return if (PyType_Ready(&PyBobMathLpInteriorPointLongstep_Type) < 0) return 0;
# if PY_VERSION_HEX >= 0x03000000
0
# endif
;
# if PY_VERSION_HEX >= 0x03000000 # if PY_VERSION_HEX >= 0x03000000
PyObject* m = PyModule_Create(&module_definition); PyObject* m = PyModule_Create(&module_definition);
if (!m) return 0;
# else # else
PyObject* m = Py_InitModule3(XBOB_EXT_MODULE_NAME, PyObject* m = Py_InitModule3(XBOB_EXT_MODULE_NAME, module_methods, module_docstr);
module_methods, module_docstr);
if (!m) return;
# endif # endif
if (!m) return 0;
auto m_ = make_safe(m); ///< protects against early returns
/* register some constants */ /* register version numbers and constants */
PyModule_AddStringConstant(m, "__version__", XBOB_EXT_MODULE_VERSION); if (PyModule_AddStringConstant(m, "__version__", XBOB_EXT_MODULE_VERSION) < 0)
return 0;
/* register the types to python */ /* register the types to python */
Py_INCREF(&PyBobMathLpInteriorPoint_Type); Py_INCREF(&PyBobMathLpInteriorPoint_Type);
PyModule_AddObject(m, "LPInteriorPoint", (PyObject *)&PyBobMathLpInteriorPoint_Type); if (PyModule_AddObject(m, "LPInteriorPoint",
(PyObject *)&PyBobMathLpInteriorPoint_Type) < 0) return 0;
Py_INCREF(&PyBobMathLpInteriorPointShortstep_Type); Py_INCREF(&PyBobMathLpInteriorPointShortstep_Type);
PyModule_AddObject(m, "LPInteriorPointShortstep", (PyObject *)&PyBobMathLpInteriorPointShortstep_Type); if (PyModule_AddObject(m, "LPInteriorPointShortstep",
(PyObject *)&PyBobMathLpInteriorPointShortstep_Type) < 0) return 0;
Py_INCREF(&PyBobMathLpInteriorPointPredictorCorrector_Type); Py_INCREF(&PyBobMathLpInteriorPointPredictorCorrector_Type);
PyModule_AddObject(m, "LPInteriorPointPredictorCorrector", (PyObject *)&PyBobMathLpInteriorPointPredictorCorrector_Type); if (PyModule_AddObject(m, "LPInteriorPointPredictorCorrector",
(PyObject *)&PyBobMathLpInteriorPointPredictorCorrector_Type) < 0) return 0;
Py_INCREF(&PyBobMathLpInteriorPointLongstep_Type); Py_INCREF(&PyBobMathLpInteriorPointLongstep_Type);
PyModule_AddObject(m, "LPInteriorPointLongstep", (PyObject *)&PyBobMathLpInteriorPointLongstep_Type); if (PyModule_AddObject(m, "LPInteriorPointLongstep",
(PyObject *)&PyBobMathLpInteriorPointLongstep_Type) < 0) return 0;
/* imports the NumPy C-API */
import_array();
/* imports xbob.blitz C-API */ /* imports xbob.blitz C-API */
import_xbob_blitz(); import_xbob_blitz();
# if PY_VERSION_HEX >= 0x03000000 Py_INCREF(m);
return m; return m;
# endif
} }
PyMODINIT_FUNC XBOB_EXT_ENTRY_NAME (void) {
# if PY_VERSION_HEX >= 0x03000000
return
# endif
create_module();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment