projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
145c26e
)
What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.
author
Fred Drake
<fdrake@acm.org>
Mon, 21 Feb 2000 18:19:06 +0000
(18:19 +0000)
committer
Fred Drake
<fdrake@acm.org>
Mon, 21 Feb 2000 18:19:06 +0000
(18:19 +0000)
Modules/parsermodule.c
patch
|
blob
|
history
diff --git
a/Modules/parsermodule.c
b/Modules/parsermodule.c
index 8e9ca7e60e179b0a3c060e69184394e2938a9c25..33767b4dbf779d8197905b029d17b39ea67bcded 100644
(file)
--- 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."