From: Fred Drake Date: Mon, 21 Feb 2000 18:19:06 +0000 (+0000) Subject: What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT. X-Git-Tag: v1.6a1~378 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0dd7507e51f27fc65bfdce556bdeda7619287e9d;p=thirdparty%2FPython%2Fcpython.git 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 8e9ca7e60e17..33767b4dbf77 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."