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

Function new_spawnv

_pydev_bundle/pydev_monkey.py:783–792  ·  view source on GitHub ↗

os.spawnv(mode, path, args) os.spawnvp(mode, file, args)

(mode, path, args)

Source from the content-addressed store, hash-verified

781
782def create_spawnv(original_name):
783 def new_spawnv(mode, path, args):
784 """
785 os.spawnv(mode, path, args)
786 os.spawnvp(mode, file, args)
787 """
788 if _get_apply_arg_patching():
789 args = patch_args(args)
790 send_process_created_message()
791
792 return getattr(os, original_name)(mode, path, args)
793
794 return new_spawnv
795

Callers

nothing calls this directly

Calls 3

_get_apply_arg_patchingFunction · 0.85
patch_argsFunction · 0.85

Tested by

no test coverage detected