[Python-checkins] python/dist/src/Python compile.c,2.286,2.287

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Thu, 22 May 2003 08:47:07 -0700


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

Modified Files:
	compile.c 
Log Message:
Remove comment with very long lines that explained what the code used
to do.

XXX Please be careful when checking in patches to avoid checking in
junk that explains what the patched code used to do.


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.286
retrieving revision 2.287
diff -C2 -d -r2.286 -r2.287
*** compile.c	21 May 2003 17:34:50 -0000	2.286
--- compile.c	22 May 2003 15:47:02 -0000	2.287
***************
*** 4629,4635 ****
  		}
  	}
! 	if (list == NULL)	/* There used to be a check here for the size of */
! 		return 0;		/* the list being 0, which would have leaked the */
! 						/* list if that condition was ever possible. JRH */
  	/* There are cellvars that are also arguments.  Create a dict
  	   to replace cellvars and put the args at the front.
--- 4629,4635 ----
  		}
  	}
! 	if (list == NULL)
! 		return 0;
! 
  	/* There are cellvars that are also arguments.  Create a dict
  	   to replace cellvars and put the args at the front.