From 0dd7507e51f27fc65bfdce556bdeda7619287e9d Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 21 Feb 2000 18:19:06 +0000 Subject: [PATCH] What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT. --- Modules/parsermodule.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 8e9ca7e60e1..33767b4dbf7 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."