Commit 4c1cbef7 authored by Stefan Behnel's avatar Stefan Behnel

Fix preprocessor guard.

parent 0067fe38
...@@ -134,7 +134,7 @@ BAD: ...@@ -134,7 +134,7 @@ BAD:
PyErr_Format(PyExc_RuntimeError, "Unable to initialize pickling for %s", ((PyTypeObject*)type_obj)->tp_name); PyErr_Format(PyExc_RuntimeError, "Unable to initialize pickling for %s", ((PyTypeObject*)type_obj)->tp_name);
ret = -1; ret = -1;
GOOD: GOOD:
#if !CYTHON_COMPILING_IN_CPYTHON #if !CYTHON_USE_PYTYPE_LOOKUP
Py_XDECREF(object_reduce); Py_XDECREF(object_reduce);
Py_XDECREF(object_reduce_ex); Py_XDECREF(object_reduce_ex);
#endif #endif
......
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