What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.
This commit is contained in:
parent
145c26e3d3
commit
0dd7507e51
|
@ -232,8 +232,7 @@ PyTypeObject PyAST_Type = {
|
||||||
/* Functions to access object as input/output buffer */
|
/* Functions to access object as input/output buffer */
|
||||||
0, /* tp_as_buffer */
|
0, /* tp_as_buffer */
|
||||||
|
|
||||||
/* Space for future expansion */
|
Py_TPFLAGS_DEFAULT, /* tp_flags */
|
||||||
0, /* tp_xxx4 */
|
|
||||||
|
|
||||||
/* __doc__ */
|
/* __doc__ */
|
||||||
"Intermediate representation of a Python parse tree."
|
"Intermediate representation of a Python parse tree."
|
||||||
|
|
Loading…
Reference in New Issue