execlp(file, *args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process.
(file, *args)
| 593 | execve(file, args[:-1], env) |
| 594 | |
| 595 | def execlp(file, *args): |
| 596 | """execlp(file, *args) |
| 597 | |
| 598 | Execute the executable file (which is searched for along $PATH) |
| 599 | with argument list args, replacing the current process. """ |
| 600 | execvp(file, args) |
| 601 | |
| 602 | def execlpe(file, *args): |
| 603 | """execlpe(file, *args, env) |
nothing calls this directly
no test coverage detected
searching dependent graphs…