comparison: src/eric7/DebugClients/Python/ThreadExtension.py
src/eric7/DebugClients/Python/ThreadExtension.py
- branch
- eric7
- changeset 9473
- 3f23dbf37dbe
- parent 9221
- bf71ee032bb4
- child 9653
- e67609152c5e
equal
deleted
inserted
replaced
5 |
5 |
6 """ |
6 """ |
7 Module implementing an import hook patching thread modules to get debugged too. |
7 Module implementing an import hook patching thread modules to get debugged too. |
8 """ |
8 """ |
9 |
9 |
|
10 import _thread |
|
11 import contextlib |
10 import os |
12 import os |
11 import sys |
13 import sys |
12 import contextlib |
|
13 |
|
14 import _thread |
|
15 import threading |
14 import threading |
16 |
15 |
17 from DebugBase import DebugBase |
16 from DebugBase import DebugBase |
18 |
17 |
19 _qtThreadNumber = 1 |
18 _qtThreadNumber = 1 |