[Python-checkins] CVS: python/dist/src/Python compile.c,2.156,2.157

Jeremy Hylton jhylton@users.sourceforge.net
Thu, 01 Feb 2001 18:58:50 -0800


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

Modified Files:
	compile.c 
Log Message:
add missing DECREF (thanks, Barry)


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.156
retrieving revision 2.157
diff -C2 -r2.156 -r2.157
*** compile.c	2001/02/01 22:48:12	2.156
--- compile.c	2001/02/02 02:58:48	2.157
***************
*** 4478,4481 ****
--- 4478,4482 ----
  			return -1;
  		}
+ 		Py_DECREF(d);
  		if (st->st_cur_type == TYPE_FUNCTION) {
  			if ((l = PyList_New(0)) == NULL)