Commit 2ea2238f authored by scoder's avatar scoder Committed by GitHub

Merge pull request #2006 from jdemeyer/structmember_later

Put #include <structmember.h> later in the C code
parents adeef152 3516537a
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
//////////////////// CythonFunction.proto //////////////////// //////////////////// CythonFunction.proto ////////////////////
#define __Pyx_CyFunction_USED 1 #define __Pyx_CyFunction_USED 1
#include <structmember.h>
#define __Pyx_CYFUNCTION_STATICMETHOD 0x01 #define __Pyx_CYFUNCTION_STATICMETHOD 0x01
#define __Pyx_CYFUNCTION_CLASSMETHOD 0x02 #define __Pyx_CYFUNCTION_CLASSMETHOD 0x02
...@@ -75,6 +74,8 @@ static int __pyx_CyFunction_init(void); ...@@ -75,6 +74,8 @@ static int __pyx_CyFunction_init(void);
//@requires: CommonStructures.c::FetchCommonType //@requires: CommonStructures.c::FetchCommonType
////@requires: ObjectHandling.c::PyObjectGetAttrStr ////@requires: ObjectHandling.c::PyObjectGetAttrStr
#include <structmember.h>
static PyObject * static PyObject *
__Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) __Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure)
{ {
......
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