コード例 #1
0
 def dumpAllObjects(self, event=None):
     """Print a summary of all existing Python objects."""
     g.printGcAll()
コード例 #2
0
ファイル: debugCommands.py プロジェクト: Darriall/leo-editor
 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
コード例 #3
0
 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
コード例 #4
0
 def dumpAllObjects(self, event=None):
     '''Print a summary of all existing Python objects.'''
     g.printGcAll()