]> granicus.if.org Git - python/commitdiff
Merged revisions 77879 via svnmerge from
authorMatthias Klose <doko@ubuntu.com>
Sun, 31 Jan 2010 16:47:55 +0000 (16:47 +0000)
committerMatthias Klose <doko@ubuntu.com>
Sun, 31 Jan 2010 16:47:55 +0000 (16:47 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77879 | matthias.klose | 2010-01-31 17:46:26 +0100 (So, 31 Jan 2010) | 2 lines

  - Fix typo in os.execvp docstring.
........

Lib/os.py

index 94476a3e70738f7bf4e1753115c1c95c921ad30f..88adc1555ac7bc3d924daad5cd1561e0b8b7d677 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.