diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-01-16 14:26:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-16 14:26:20 (GMT) |
commit | 07858894689047c77f9c12ddc061d30681368d19 (patch) | |
tree | 265342755fa909a3db267cc7274f7cdb8929b405 /Doc/whatsnew | |
parent | 92b8322e7ea04b239cb1cb87b78d952f13ddfebb (diff) | |
download | cpython-07858894689047c77f9c12ddc061d30681368d19.zip cpython-07858894689047c77f9c12ddc061d30681368d19.tar.gz cpython-07858894689047c77f9c12ddc061d30681368d19.tar.bz2 |
bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)
The subprocess module can now use the os.posix_spawnp() function,
if it is available, to locate the program in the PATH.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 053fe90..05fb4ff 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -281,8 +281,7 @@ Optimizations * *close_fds* is false; * *preexec_fn*, *pass_fds*, *cwd*, *stdin*, *stdout*, *stderr* and - *start_new_session* parameters are not set; - * the *executable* path contains a directory. + *start_new_session* parameters are not set. * :func:`shutil.copyfile`, :func:`shutil.copy`, :func:`shutil.copy2`, :func:`shutil.copytree` and :func:`shutil.move` use platform-specific |