summaryrefslogtreecommitdiff
path: root/Lib/os.py
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-01-31 16:48:44 +0000
committerMatthias Klose <doko@ubuntu.com>2010-01-31 16:48:44 +0000
commitc36a4cfba1566f32da35863001d68e6c510593fb (patch)
tree5bbe0a6e5bc6cab110d0c7efbac1e70c9bcb5f5d /Lib/os.py
parent931df936852ecdde9f2ee7a7aae3c69dbcb63310 (diff)
downloadcpython-c36a4cfba1566f32da35863001d68e6c510593fb.tar.gz
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. ........
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 2a9937f12f..a640984353 100644
--- 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.