[Python-checkins] r77879 - python/trunk/Lib/os.py
matthias.klose
python-checkins at python.org
Sun Jan 31 17:46:26 CET 2010
Author: matthias.klose
Date: Sun Jan 31 17:46:26 2010
New Revision: 77879
Log:
- Fix typo in os.execvp docstring.
Modified:
python/trunk/Lib/os.py
Modified: python/trunk/Lib/os.py
==============================================================================
--- python/trunk/Lib/os.py (original)
+++ python/trunk/Lib/os.py Sun Jan 31 17:46:26 2010
@@ -336,7 +336,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