]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
SF #764121, docstring for spawnlp incorrect
authorNeal Norwitz <nnorwitz@gmail.com>
Wed, 2 Jul 2003 02:51:15 +0000 (02:51 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Wed, 2 Jul 2003 02:51:15 +0000 (02:51 +0000)
Lib/os.py

index b43f4dd34905ee3205c180362af1ad94cb065d03..ff6589d00e4a610a0dee4c5d40257e342291c9a3 100644 (file)
--- 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.