diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-01-31 16:48:44 +0000 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-01-31 16:48:44 +0000 |
commit | c36a4cfba1566f32da35863001d68e6c510593fb (patch) | |
tree | 5bbe0a6e5bc6cab110d0c7efbac1e70c9bcb5f5d /Lib/os.py | |
parent | 931df936852ecdde9f2ee7a7aae3c69dbcb63310 (diff) | |
download | cpython-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |