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