]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix incorrect comment for (struct compiling)->c_cellvars
authorBrett Cannon <bcannon@gmail.com>
Sun, 15 Aug 2004 01:15:01 +0000 (01:15 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sun, 15 Aug 2004 01:15:01 +0000 (01:15 +0000)
Python/compile.c

index 6d384442465b0626bbc79712203c925876078c01..de29536528457694345cb724baf6c2ae60866e4a 100644 (file)
@@ -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 */