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

................
  r77881 | matthias.klose | 2010-01-31 17:48:44 +0100 (So, 31 Jan 2010) | 9 lines

  Merged revisions 77879 via svnmerge from
  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 7c342feb432641a652a73c0daa89f6f902e8c617..5b8aa25da16631a6f61e910f09fd32088aabfa87 100644 (file)
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -322,7 +322,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.