]> granicus.if.org Git - python/commitdiff
- Fix typo in os.execvp docstring.
authorMatthias Klose <doko@ubuntu.com>
Sun, 31 Jan 2010 16:46:26 +0000 (16:46 +0000)
committerMatthias Klose <doko@ubuntu.com>
Sun, 31 Jan 2010 16:46:26 +0000 (16:46 +0000)
Lib/os.py

index 12ebbcb517caed1501f7610913c09c137da5c81c..c612e17ecee539f7089971e9f4a3a6901b5da7c0 100644 (file)
--- 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.