summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-07-02 02:51:15 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2003-07-02 02:51:15 +0000
commitde8132c42fa59016c7e7300cb5c54224c712a0b6 (patch)
tree5b03d9e5c2790a01142005de46fc754e4304c744
parent190b1ef01739addaeaf5be2c4bcb304bdfa55619 (diff)
downloadcpython-de8132c42fa59016c7e7300cb5c54224c712a0b6.tar.gz
SF #764121, docstring for spawnlp incorrect
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index b43f4dd349..ff6589d00e 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -537,7 +537,7 @@ if _exists("spawnvp"):
# At the moment, Windows doesn't implement spawnvp[e],
# so it won't have spawnlp[e] either.
def spawnlp(mode, file, *args):
- """spawnlp(mode, file, *args, env) -> integer
+ """spawnlp(mode, file, *args) -> integer
Execute file (which is looked for along $PATH) with arguments from
args in a subprocess with the supplied environment.