MCPcopy Index your code
hub / github.com/RustPython/RustPython / execle

Function execle

Lib/os.py:574–580  ·  view source on GitHub ↗

execle(file, *args, env) Execute the executable file with argument list args and environment env, replacing the current process.

(file, *args)

Source from the content-addressed store, hash-verified

572 execv(file, args)
573
574def execle(file, *args):
575 """execle(file, *args, env)
576
577 Execute the executable file with argument list args and
578 environment env, replacing the current process. """
579 env = args[-1]
580 execve(file, args[:-1], env)
581
582def execlp(file, *args):
583 """execlp(file, *args)

Callers

nothing calls this directly

Calls 1

execveFunction · 0.50

Tested by

no test coverage detected