def dumpAllObjects(self, event=None): """Print a summary of all existing Python objects.""" g.printGcAll()
def dumpAllObjects(self, event=None): '''Print a summary of all existing Python objects.''' old = g.trace_gc g.trace_gc = True g.printGcAll() g.trace_gc = old
def dumpAllObjects(self, event=None): '''Print a summary of all existing Python objects.''' g.printGcAll()