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

Barry A. Warsaw bwarsaw@cnri.reston.va.us
Wed, 27 Jan 1999 18:14:02 -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_complex(): Nailed memory leak.  This one's in the instance
test for classes with a __complex__() method.  The attribute is pulled 
out of the instance with PyObject_GetAttr() but this transfers
ownership and the function object was never DECREF'd.