def dumpNewObjects(self, event=None): ''' Print a summary of all Python objects created since the last time Python's Garbage collector was run. ''' old = g.trace_gc g.trace_gc = True g.printGcObjects() g.trace_gc = old
def dumpNewObjects(self, event=None): """ Print a summary of all Python objects created since the last time Python's Garbage collector was run. """ g.printGcObjects()