commit | 0dd7507e51f27fc65bfdce556bdeda7619287e9d | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Mon Feb 21 18:19:06 2000 +0000 |
committer | Fred Drake <fdrake@acm.org> | Mon Feb 21 18:19:06 2000 +0000 |
tree | 7127d03bc848bf4c1ac052910e9d3479141f9245 | |
parent | 145c26e3d31e48f40c8cfe7bf46e0d115104a00e [diff] [blame] |
What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 8e9ca7e..33767b4 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c
@@ -232,8 +232,7 @@ /* 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."