diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-07-02 02:49:33 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-07-02 02:49:33 (GMT) |
commit | b7f6810a1f6180656a42ea0c3f0a9d4ddd7b4f56 (patch) | |
tree | b026ef4b5aae57e4f182b03cfa089bf2fbf29c7e | |
parent | 3c0f2c91adf086f809169f94ca9a2a75df3dc996 (diff) | |
download | cpython-b7f6810a1f6180656a42ea0c3f0a9d4ddd7b4f56.zip cpython-b7f6810a1f6180656a42ea0c3f0a9d4ddd7b4f56.tar.gz cpython-b7f6810a1f6180656a42ea0c3f0a9d4ddd7b4f56.tar.bz2 |
SF #764121, docstring for spawnlp incorrect
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -580,7 +580,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. |