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)
| 574 | _execvpe(file, args) |
| 575 | |
| 576 | def 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 |