[Python-checkins] CVS: python/dist/src/Python bltinmodule.c

Barry A. Warsaw bwarsaw@cnri.reston.va.us
Wed, 27 Jan 1999 23:21:37 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Python
In directory anthem:/projects/python/develop/bwarsaw/pristine/Python

Modified Files:
	bltinmodule.c 
Log Message:
builtin_map(): Nailed memory leak.  PyList_Append() borrows a
reference, so you have to DECREF the appended value.  This was a fun
one!