]> granicus.if.org Git - python/commitdiff
What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.
authorFred Drake <fdrake@acm.org>
Mon, 21 Feb 2000 18:19:06 +0000 (18:19 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 21 Feb 2000 18:19:06 +0000 (18:19 +0000)
Modules/parsermodule.c

index 8e9ca7e60e179b0a3c060e69184394e2938a9c25..33767b4dbf779d8197905b029d17b39ea67bcded 100644 (file)
@@ -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."