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

Function execlpe

Lib/os.py:602–609  ·  view source on GitHub ↗

execlpe(file, *args, env) Execute the executable file (which is searched for along $PATH) with argument list args and environment env, replacing the current process.

(file, *args)

Source from the content-addressed store, hash-verified

600 execvp(file, args)
601
602def execlpe(file, *args):
603 """execlpe(file, *args, env)
604
605 Execute the executable file (which is searched for along $PATH)
606 with argument list args and environment env, replacing the current
607 process. """
608 env = args[-1]
609 execvpe(file, args[:-1], env)
610
611def execvp(file, args):
612 """execvp(file, args)

Callers

nothing calls this directly

Calls 1

execvpeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…