Commit cab3760c authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #132 from tito/fix-win32

Fix compilation issues on windows (got this error from 0.16 already)
parents ded57336 b1871496
......@@ -438,7 +438,10 @@ static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject
return NULL;
}
#else
#define __Pyx_CyFunction_Call PyCFunction_Call
static PyObject * __PyCFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) {
return PyCFunction_Call(func, arg, kw);
}
#define __Pyx_CyFunction_Call __PyCFunction_Call
#endif
static PyTypeObject __pyx_CyFunctionType_type = {
......
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