diff options
author | Christian Heimes <christian@python.org> | 2019-08-27 21:36:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 21:36:56 (GMT) |
commit | 98d90f745d35d5d07bffcb46788b50e05eea56c6 (patch) | |
tree | ef3fd981f4f82f06e73b014bc742cf7a5acfebd9 /Doc/whatsnew | |
parent | 3224e1a6bb23b1b322f5b9424b10ab68c9127dcc (diff) | |
download | cpython-98d90f745d35d5d07bffcb46788b50e05eea56c6.zip cpython-98d90f745d35d5d07bffcb46788b50e05eea56c6.tar.gz cpython-98d90f745d35d5d07bffcb46788b50e05eea56c6.tar.bz2 |
bpo-37951: Lift subprocess's fork() restriction (GH-15544)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index cd31cf6..bcdb60d 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -1531,6 +1531,12 @@ Changes in the Python API non-zero :attr:`~Popen.returncode`. (Contributed by Joannah Nanjekye and Victor Stinner in :issue:`35537`.) +* The *preexec_fn* argument of * :class:`subprocess.Popen` is no longer + compatible with subinterpreters. The use of the parameter in a + subinterpreter now raises :exc:`RuntimeError`. + (Contributed by Eric Snow in :issue:`34651`, modified by Christian Heimes + in :issue:`37951`.) + * The :meth:`imap.IMAP4.logout` method no longer ignores silently arbitrary exceptions. |