comparison: src/eric7/DebugClients/Python/SubprocessExtension.py
src/eric7/DebugClients/Python/SubprocessExtension.py
- branch
- eric7
- changeset 9473
- 3f23dbf37dbe
- parent 9221
- bf71ee032bb4
- child 9611
- af03537d56b2
equal
deleted
inserted
replaced
11 import os |
11 import os |
12 import shlex |
12 import shlex |
13 |
13 |
14 from DebugUtilities import ( |
14 from DebugUtilities import ( |
15 isPythonProgram, |
15 isPythonProgram, |
|
16 isWindowsPlatform, |
16 patchArguments, |
17 patchArguments, |
17 stringToArgumentsWindows, |
18 stringToArgumentsWindows, |
18 isWindowsPlatform, |
|
19 ) |
19 ) |
20 |
20 |
21 _debugClient = None |
21 _debugClient = None |
22 |
22 |
23 |
23 |