summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-01-31 16:46:26 (GMT)
committerMatthias Klose <doko@ubuntu.com>2010-01-31 16:46:26 (GMT)
commit48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39 (patch)
tree960089e982d4b6192b5cd7b89a5b1360704b0a82 /Lib
parent626d92aaea9dbbdd7310682ae8104184e7e5b028 (diff)
downloadcpython-48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39.zip
cpython-48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39.tar.gz
cpython-48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39.tar.bz2
- Fix typo in os.execvp docstring.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 12ebbcb..c612e17 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.