[Python-checkins] python/dist/src/Python compile.c,2.316,2.317

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sun Aug 15 03:15:04 CEST 2004


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20463/Python

Modified Files:
	compile.c 
Log Message:
Fix incorrect comment for (struct compiling)->c_cellvars


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.316
retrieving revision 2.317
diff -C2 -d -r2.316 -r2.317
*** compile.c	12 Aug 2004 18:16:43 -0000	2.316
--- compile.c	15 Aug 2004 01:15:01 -0000	2.317
***************
*** 722,726 ****
  	PyObject *c_varnames;	/* list (inverse of c_locals) */
  	PyObject *c_freevars;	/* dictionary (value=None) */
! 	PyObject *c_cellvars;	/* list */
  	int c_nlocals;		/* index of next local */
  	int c_argcount;		/* number of top-level arguments */
--- 722,726 ----
  	PyObject *c_varnames;	/* list (inverse of c_locals) */
  	PyObject *c_freevars;	/* dictionary (value=None) */
! 	PyObject *c_cellvars;	/* dictionary */
  	int c_nlocals;		/* index of next local */
  	int c_argcount;		/* number of top-level arguments */



More information about the Python-checkins mailing list