[Python-checkins] python/dist/src/Objects frameobject.c,2.73,2.74

mwh at users.sourceforge.net mwh at users.sourceforge.net
Mon Aug 11 10:14:09 EDT 2003


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv28574

Modified Files:
	frameobject.c 
Log Message:
Fix silly typo in comment.


Index: frameobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/frameobject.c,v
retrieving revision 2.73
retrieving revision 2.74
diff -C2 -d -r2.73 -r2.74
*** frameobject.c	5 Feb 2003 22:39:29 -0000	2.73
--- frameobject.c	11 Aug 2003 16:14:06 -0000	2.74
***************
*** 610,614 ****
  	if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == 
  		(CO_NEWLOCALS | CO_OPTIMIZED))
! 		locals = NULL; /* PyFrame_Fast2Locals() will set. */
  	else if (code->co_flags & CO_NEWLOCALS) {
  		locals = PyDict_New();
--- 610,614 ----
  	if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == 
  		(CO_NEWLOCALS | CO_OPTIMIZED))
! 		locals = NULL; /* PyFrame_FastToLocals() will set. */
  	else if (code->co_flags & CO_NEWLOCALS) {
  		locals = PyDict_New();





More information about the Python-checkins mailing list