What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.

This commit is contained in:
Fred Drake 2000-02-21 18:19:06 +00:00
parent 145c26e3d3
commit 0dd7507e51
1 changed files with 1 additions and 2 deletions

View File

@ -232,8 +232,7 @@ PyTypeObject PyAST_Type = {
/* Functions to access object as input/output buffer */
0, /* tp_as_buffer */
/* Space for future expansion */
0, /* tp_xxx4 */
Py_TPFLAGS_DEFAULT, /* tp_flags */
/* __doc__ */
"Intermediate representation of a Python parse tree."