execlpe(file, *args, env) Execute the executable file (which is searched for along $PATH) with argument list args and environment env, replacing the current process.
(file, *args)
| 600 | execvp(file, args) |
| 601 | |
| 602 | def execlpe(file, *args): |
| 603 | """execlpe(file, *args, env) |
| 604 | |
| 605 | Execute the executable file (which is searched for along $PATH) |
| 606 | with argument list args and environment env, replacing the current |
| 607 | process. """ |
| 608 | env = args[-1] |
| 609 | execvpe(file, args[:-1], env) |
| 610 | |
| 611 | def execvp(file, args): |
| 612 | """execvp(file, args) |
nothing calls this directly
no test coverage detected
searching dependent graphs…