summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-08-15 01:15:01 +0000
committerBrett Cannon <bcannon@gmail.com>2004-08-15 01:15:01 +0000
commitadc08a5b69c54c3dda7486cd74de123a4a802e29 (patch)
treec27c54ac25f5884198604d3ebb6c645c3c05be20 /Python/compile.c
parentb06b910ff0a28ed413062df50e6edcccfa9c97a1 (diff)
downloadcpython-adc08a5b69c54c3dda7486cd74de123a4a802e29.tar.gz
Fix incorrect comment for (struct compiling)->c_cellvars
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 6d38444246..de29536528 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 */