MCPcopy Index your code
hub / github.com/python/cpython / execvp

Function execvp

Lib/os.py:611–617  ·  view source on GitHub ↗

execvp(file, args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process. args may be a list or tuple of strings.

(file, args)

Source from the content-addressed store, hash-verified

609 execvpe(file, args[:-1], env)
610
611def execvp(file, args):
612 """execvp(file, args)
613
614 Execute the executable file (which is searched for along $PATH)
615 with argument list args, replacing the current process.
616 args may be a list or tuple of strings. """
617 _execvpe(file, args)
618
619def execvpe(file, args, env):
620 """execvpe(file, args, env)

Callers 1

execlpFunction · 0.85

Calls 1

_execvpeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…