summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-01-31 16:47:55 (GMT)
committerMatthias Klose <doko@ubuntu.com>2010-01-31 16:47:55 (GMT)
commit2b52e311e59e66ca38bcaec095dd7dd58f656512 (patch)
treea8dab6fb37a09b56009add148b74d60a754d521e /Lib/os.py
parentd71657c26331b5892947478c694f7239cbdeff6a (diff)
downloadcpython-2b52e311e59e66ca38bcaec095dd7dd58f656512.zip
cpython-2b52e311e59e66ca38bcaec095dd7dd58f656512.tar.gz
cpython-2b52e311e59e66ca38bcaec095dd7dd58f656512.tar.bz2
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 94476a3..88adc15 100644
--- 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.