59 if not _debugClient.skipMultiProcessDebugging(scriptName): |
59 if not _debugClient.skipMultiProcessDebugging(scriptName): |
60 arguments = patchArguments( |
60 arguments = patchArguments( |
61 _debugClient, arguments, noRedirect=True |
61 _debugClient, arguments, noRedirect=True |
62 ) |
62 ) |
63 |
63 |
64 super(PopenWrapper, self).__init__(arguments, *args, **kwargs) |
64 super().__init__(arguments, *args, **kwargs) |
65 |
65 |
66 _debugClient = debugClient |
66 _debugClient = debugClient |
67 module.Popen = PopenWrapper |
67 module.Popen = PopenWrapper |