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

Function execvpe

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

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

(file, args, env)

Source from the content-addressed store, hash-verified

574 _execvpe(file, args)
575
576def execvpe(file, args, env):
577 """execvpe(file, args, env)
578
579 Execute the executable file (which is searched for along $PATH)
580 with argument list args and environment env, replacing the
581 current process.
582 args may be a list or tuple of strings. """
583 _execvpe(file, args, env)
584
585__all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"])
586

Callers 1

execlpeFunction · 0.85

Calls 1

_execvpeFunction · 0.85

Tested by

no test coverage detected