From: Neal Norwitz Date: Wed, 2 Jul 2003 02:51:15 +0000 (+0000) Subject: SF #764121, docstring for spawnlp incorrect X-Git-Tag: 2.2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0a6f7dac39f3c478ba26be147ba8c3913e3fc8dc;p=thirdparty%2FPython%2Fcpython.git SF #764121, docstring for spawnlp incorrect --- diff --git a/Lib/os.py b/Lib/os.py index b43f4dd34905..ff6589d00e4a 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.