diff options
author | Fred Drake <fdrake@acm.org> | 2000-02-21 18:19:06 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-02-21 18:19:06 +0000 |
commit | 870be35e9cfa2ce553fe0ef54e7c05266f3e09ef (patch) | |
tree | 5aded2eddc854b28d06f53adb8268fd7a6e5631a /Modules/parsermodule.c | |
parent | 3bafb336e28126e7032183b18b3ae4df96f51bd6 (diff) | |
download | cpython-870be35e9cfa2ce553fe0ef54e7c05266f3e09ef.tar.gz |
What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 8e9ca7e60e..33767b4dbf 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -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." |