Commit baaa5932 authored by Stefan Behnel's avatar Stefan Behnel

improve alignment in __pyx_CyFunctionObject struct

parent 40528a45
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
typedef struct { typedef struct {
PyCFunctionObject func; PyCFunctionObject func;
int flags;
PyObject *func_dict; PyObject *func_dict;
PyObject *func_weakreflist; PyObject *func_weakreflist;
PyObject *func_name; PyObject *func_name;
...@@ -35,6 +34,7 @@ typedef struct { ...@@ -35,6 +34,7 @@ typedef struct {
/* Dynamic default args and annotations */ /* Dynamic default args and annotations */
void *defaults; void *defaults;
int defaults_pyobjects; int defaults_pyobjects;
int flags;
/* Defaults info */ /* Defaults info */
PyObject *defaults_tuple; /* Const defaults tuple */ PyObject *defaults_tuple; /* Const defaults tuple */
......
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