- Fix typo in os.execvp docstring.

This commit is contained in:
Matthias Klose 2010-01-31 16:46:26 +00:00
parent 626d92aaea
commit 48a3c4e2e3
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ def execlpe(file, *args):
execvpe(file, args[:-1], env)
def execvp(file, args):
"""execp(file, args)
"""execvp(file, args)
Execute the executable file (which is searched for along $PATH)
with argument list args, replacing the current process.