Commit 31f8350f authored by Brett Cannon's avatar Brett Cannon

Fix incorrect comment for (struct compiling)->c_cellvars

parent 9e15dd68
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment