MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / execlpe

Function execlpe

tools/python-3.11.9-amd64/Lib/os.py:559–566  ·  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

557 execvp(file, args)
558
559def execlpe(file, *args):
560 """execlpe(file, *args, env)
561
562 Execute the executable file (which is searched for along $PATH)
563 with argument list args and environment env, replacing the current
564 process. """
565 env = args[-1]
566 execvpe(file, args[:-1], env)
567
568def execvp(file, args):
569 """execvp(file, args)

Callers

nothing calls this directly

Calls 1

execvpeFunction · 0.85

Tested by

no test coverage detected