From: Matthias Klose Date: Sun, 31 Jan 2010 16:46:26 +0000 (+0000) Subject: - Fix typo in os.execvp docstring. X-Git-Tag: v2.7a3~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39;p=thirdparty%2FPython%2Fcpython.git - Fix typo in os.execvp docstring. --- diff --git a/Lib/os.py b/Lib/os.py index 12ebbcb517ca..c612e17ecee5 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -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.