Fix incorrect comment for (struct compiling)->c_cellvars

This commit is contained in:
Brett Cannon 2004-08-15 01:15:01 +00:00
parent 9e15dd6861
commit 31f8350f43
1 changed files with 1 additions and 1 deletions

View 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 */