[Python-checkins] r77881 - in python/branches/py3k: Lib/os.py

matthias.klose python-checkins at python.org
Sun Jan 31 17:48:45 CET 2010


Author: matthias.klose
Date: Sun Jan 31 17:48:44 2010
New Revision: 77881

Log:
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/os.py

Modified: python/branches/py3k/Lib/os.py
==============================================================================
--- python/branches/py3k/Lib/os.py	(original)
+++ python/branches/py3k/Lib/os.py	Sun Jan 31 17:48:44 2010
@@ -322,7 +322,7 @@
     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.


More information about the Python-checkins mailing list