mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Fix incorrect comment for (struct compiling)->c_cellvars
This commit is contained in:
parent
9e15dd6861
commit
31f8350f43
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue