MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / new_CreateProcess

Function new_CreateProcess

_pydev_bundle/pydev_monkey.py:901–911  ·  view source on GitHub ↗
(app_name, cmd_line, *args)

Source from the content-addressed store, hash-verified

899 """
900
901 def new_CreateProcess(app_name, cmd_line, *args):
902 try:
903 import _subprocess
904 except ImportError:
905 import _winapi as _subprocess
906
907 if _get_apply_arg_patching():
908 cmd_line = patch_arg_str_win(cmd_line)
909 send_process_created_message()
910
911 return getattr(_subprocess, original_name)(app_name, cmd_line, *args)
912
913 return new_CreateProcess
914

Callers

nothing calls this directly

Calls 4

_get_apply_arg_patchingFunction · 0.85
patch_arg_str_winFunction · 0.85
warn_multiprocFunction · 0.85

Tested by

no test coverage detected