diff options
author | Fred Drake <fdrake@acm.org> | 2000-02-21 18:19:06 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-02-21 18:19:06 (GMT) |
commit | 0dd7507e51f27fc65bfdce556bdeda7619287e9d (patch) | |
tree | 7127d03bc848bf4c1ac052910e9d3479141f9245 /Modules | |
parent | 145c26e3d31e48f40c8cfe7bf46e0d115104a00e (diff) | |
download | cpython-0dd7507e51f27fc65bfdce556bdeda7619287e9d.zip cpython-0dd7507e51f27fc65bfdce556bdeda7619287e9d.tar.gz cpython-0dd7507e51f27fc65bfdce556bdeda7619287e9d.tar.bz2 |
What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.
Diffstat (limited to 'Modules')
-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 8e9ca7e..33767b4 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." |