[Python-checkins] CVS: python/dist/src/Python ceval.c,2.249,2.250

Neil Schemenauer nascheme@users.sourceforge.net
Tue, 19 Jun 2001 17:39:30 -0700


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

Modified Files:
	ceval.c 
Log Message:
Remove unused code.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.249
retrieving revision 2.250
diff -C2 -r2.249 -r2.250
*** ceval.c	2001/06/18 22:08:13	2.249
--- ceval.c	2001/06/20 00:39:28	2.250
***************
*** 2200,2212 ****
  	} /* main loop */
  
- 	/* Pop remaining stack entries */
- 
- 	/*
- 	while (!EMPTY()) {
- 		v = POP();
- 		Py_XDECREF(v);
- 	}
- 	*/
- 
  	if (why != WHY_RETURN && why != WHY_YIELD)
  		retval = NULL;
--- 2200,2203 ----