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: |