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

Function execlp

Lib/os.py:595–600  ·  view source on GitHub ↗

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

(file, *args)

Source from the content-addressed store, hash-verified

593 execve(file, args[:-1], env)
594
595def execlp(file, *args):
596 """execlp(file, *args)
597
598 Execute the executable file (which is searched for along $PATH)
599 with argument list args, replacing the current process. """
600 execvp(file, args)
601
602def execlpe(file, *args):
603 """execlpe(file, *args, env)

Callers

nothing calls this directly

Calls 1

execvpFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…