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

Function patch_arg_str_win

_pydev_bundle/pydev_monkey.py:675–682  ·  view source on GitHub ↗
(arg_str)

Source from the content-addressed store, hash-verified

673
674
675def patch_arg_str_win(arg_str):
676 args = str_to_args_windows(arg_str)
677 # Fix https://youtrack.jetbrains.com/issue/PY-9767 (args may be empty)
678 if not args or not is_python(args[0]):
679 return arg_str
680 arg_str = " ".join(patch_args(args))
681 pydev_log.debug("New args: %s", arg_str)
682 return arg_str
683
684
685def monkey_patch_module(module, funcname, create_func):

Callers 1

new_CreateProcessFunction · 0.85

Calls 4

str_to_args_windowsFunction · 0.85
is_pythonFunction · 0.85
patch_argsFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected