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

Function execvpe

Lib/os.py:619–626  ·  view source on GitHub ↗

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

(file, args, env)

Source from the content-addressed store, hash-verified

617 _execvpe(file, args)
618
619def execvpe(file, args, env):
620 """execvpe(file, args, env)
621
622 Execute the executable file (which is searched for along $PATH)
623 with argument list args and environment env, replacing the
624 current process.
625 args may be a list or tuple of strings. """
626 _execvpe(file, args, env)
627
628__all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"])
629

Callers 1

execlpeFunction · 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…