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

Function execvp

tools/python-3.11.9-amd64/Lib/os.py:568–574  ·  view source on GitHub ↗

execvp(file, args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process. args may be a list or tuple of strings.

(file, args)

Source from the content-addressed store, hash-verified

566 execvpe(file, args[:-1], env)
567
568def execvp(file, args):
569 """execvp(file, args)
570
571 Execute the executable file (which is searched for along $PATH)
572 with argument list args, replacing the current process.
573 args may be a list or tuple of strings. """
574 _execvpe(file, args)
575
576def execvpe(file, args, env):
577 """execvpe(file, args, env)

Callers 1

execlpFunction · 0.85

Calls 1

_execvpeFunction · 0.85

Tested by

no test coverage detected