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

Function execl

Lib/os.py:567–572  ·  view source on GitHub ↗

execl(file, *args) Execute the executable file with argument list args, replacing the current process.

(file, *args)

Source from the content-addressed store, hash-verified

565 __all__.append("fwalk")
566
567def execl(file, *args):
568 """execl(file, *args)
569
570 Execute the executable file with argument list args, replacing the
571 current process. """
572 execv(file, args)
573
574def execle(file, *args):
575 """execle(file, *args, env)

Callers

nothing calls this directly

Calls 1

execvFunction · 0.50

Tested by

no test coverage detected