Fix incorrect comment for (struct compiling)->c_cellvars
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 @@
 	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 */