DebugClients/Python/ThreadExtension.py

branch
debugger speed
changeset 5221
960afd19c1b6
parent 5209
cd058aa6af37
child 5222
6548dc1bfd48
equal deleted inserted replaced
5209:cd058aa6af37 5221:960afd19c1b6
40 # dictionary of all threads running {id: DebugBase} 40 # dictionary of all threads running {id: DebugBase}
41 self.threads = {_thread.get_ident(): self} 41 self.threads = {_thread.get_ident(): self}
42 42
43 # the "current" thread, basically for variables view 43 # the "current" thread, basically for variables view
44 self.currentThread = self 44 self.currentThread = self
45 # the thread we are at a breakpoint continuing at next command
46 self.currentThreadExec = self
45 47
46 # special objects representing the main scripts thread and frame 48 # special objects representing the main scripts thread and frame
47 self.mainThread = self 49 self.mainThread = self
48 50
49 if sys.version_info[0] == 2: 51 if sys.version_info[0] == 2:

eric ide

mercurial