From 31f8350f439c3219c3975d127f8c5037d2362427 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 15 Aug 2004 01:15:01 +0000 Subject: Fix incorrect comment for (struct compiling)->c_cellvars --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 6d38444..de29536 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 */ -- cgit v0.12