summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-01-31 16:48:44 (GMT)
committerMatthias Klose <doko@ubuntu.com>2010-01-31 16:48:44 (GMT)
commita09c54f6578a37eab104c168543840fedf111ddd (patch)
treeb87928506a0b3593769a49a58eb1f2f38871b624 /Lib/os.py
parentc8b16f8c243acf1ac9006b3d344988f629cea7a6 (diff)
downloadcpython-a09c54f6578a37eab104c168543840fedf111ddd.zip
cpython-a09c54f6578a37eab104c168543840fedf111ddd.tar.gz
cpython-a09c54f6578a37eab104c168543840fedf111ddd.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 2a9937f..a640984 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.