diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-01-31 16:46:26 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-01-31 16:46:26 (GMT) |
commit | 48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39 (patch) | |
tree | 960089e982d4b6192b5cd7b89a5b1360704b0a82 /Lib/os.py | |
parent | 626d92aaea9dbbdd7310682ae8104184e7e5b028 (diff) | |
download | cpython-48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39.zip cpython-48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39.tar.gz cpython-48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39.tar.bz2 |
- 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
@@ -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. |