summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-05-23 04:04:17 (GMT)
committerFred Drake <fdrake@acm.org>1997-05-23 04:04:17 (GMT)
commit69b9ae4e0bd101ad065575c206a2c247d3449a4c (patch)
treee8ac85ee4bfded719466a6c48b58f5a6e6eb79a7 /Modules/parsermodule.c
parentc6447527aaea20527a57c0953ff4078418ff7177 (diff)
downloadcpython-69b9ae4e0bd101ad065575c206a2c247d3449a4c.zip
cpython-69b9ae4e0bd101ad065575c206a2c247d3449a4c.tar.gz
cpython-69b9ae4e0bd101ad065575c206a2c247d3449a4c.tar.bz2
Add doc string to type object.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r--Modules/parsermodule.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index bd1be62..50c1def 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -213,7 +213,18 @@ PyTypeObject PyAST_Type = {
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
- 0 /* tp_str */
+ 0, /* tp_str */
+ 0, /* tp_getattro */
+ 0, /* tp_setattro */
+
+ /* Functions to access object as input/output buffer */
+ 0, /* tp_as_buffer */
+
+ /* Space for future expansion */
+ 0, /* tp_xxx4 */
+
+ /* __doc__ */
+ "Intermediate representation of a Python parse tree."
}; /* PyAST_Type */