diff options
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 0f10dbe..dae2a3e 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -73,7 +73,7 @@ int Py_OptimizeFlag = 0; #define OFF(x) offsetof(PyCodeObject, x) -static struct memberlist code_memberlist[] = { +static PyMemberDef code_memberlist[] = { {"co_argcount", T_INT, OFF(co_argcount), READONLY}, {"co_nlocals", T_INT, OFF(co_nlocals), READONLY}, {"co_stacksize",T_INT, OFF(co_stacksize), READONLY}, |