summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-08-15 01:15:01 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-08-15 01:15:01 (GMT)
commit31f8350f439c3219c3975d127f8c5037d2362427 (patch)
treeae168c9f843114339c354b4a002e06656faaa6a1 /Python
parent9e15dd6861602449e21024d18214f6da0bbe3df7 (diff)
downloadcpython-31f8350f439c3219c3975d127f8c5037d2362427.zip
cpython-31f8350f439c3219c3975d127f8c5037d2362427.tar.gz
cpython-31f8350f439c3219c3975d127f8c5037d2362427.tar.bz2
Fix incorrect comment for (struct compiling)->c_cellvars
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 6d38444..de29536 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -721,7 +721,7 @@ struct compiling {
PyObject *c_locals; /* dictionary (value=localID) */
PyObject *c_varnames; /* list (inverse of c_locals) */
PyObject *c_freevars; /* dictionary (value=None) */
- PyObject *c_cellvars; /* list */
+ PyObject *c_cellvars; /* dictionary */
int c_nlocals; /* index of next local */
int c_argcount; /* number of top-level arguments */
int c_flags; /* same as co_flags */