• Sjoerd Mullender's avatar
    Implemented two new functions in sys: · 6ec3c653
    Sjoerd Mullender yazdı
    	getcounts() returns a list of counts of allocations and
    		deallocations for all different object types.
    	getobjects(n [, type ]) returns a list of recently allocated
    		and not-yet-freed objects of the given type (all
    		objects if no type given).  Only the n most recent
    		(all if n==0) objects are returned.
    getcounts is only available if compiled with -DCOUNT_ALLOCS,
    getobjects is only available if compiled with -DTRACE_REFS.  Note that
    everything must be compiled with these options!
    6ec3c653
Adı
Son kayıt (commit)
Son güncelleme
..
Makefile.in Loading commit data...
abstract.c Loading commit data...
accessobject.c Loading commit data...
classobject.c Loading commit data...
dictobject.c Loading commit data...
fileobject.c Loading commit data...
floatobject.c Loading commit data...
frameobject.c Loading commit data...
funcobject.c Loading commit data...
intobject.c Loading commit data...
listobject.c Loading commit data...
longobject.c Loading commit data...
mappingobject.c Loading commit data...
methodobject.c Loading commit data...
moduleobject.c Loading commit data...
object.c Loading commit data...
rangeobject.c Loading commit data...
stringobject.c Loading commit data...
tupleobject.c Loading commit data...
typeobject.c Loading commit data...
xxobject.c Loading commit data...