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)
| 617 | _execvpe(file, args) |
| 618 | |
| 619 | def execvpe(file, args, env): |
| 620 | """execvpe(file, args, env) |
| 621 | |
| 622 | Execute the executable file (which is searched for along $PATH) |
| 623 | with argument list args and environment env, replacing the |
| 624 | current process. |
| 625 | args may be a list or tuple of strings. """ |
| 626 | _execvpe(file, args, env) |
| 627 | |
| 628 | __all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"]) |
| 629 |