6 """ |
6 """ |
7 Module implementing a function to patch the process creation functions to |
7 Module implementing a function to patch the process creation functions to |
8 support multiprocess debugging. |
8 support multiprocess debugging. |
9 """ |
9 """ |
10 |
10 |
11 import sys |
|
12 |
11 |
13 from DebugUtilities import isWindowsPlatform, patchArguments, isPythonProgram |
12 from DebugUtilities import patchArguments, isPythonProgram |
14 |
13 |
15 _debugClient = None |
14 _debugClient = None |
16 |
15 |
17 |
16 |
18 def patchModule(module, functionName, createFunction): |
17 def patchModule(module, functionName, createFunction): |