diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-27 21:56:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 21:56:27 (GMT) |
commit | 03c52f2f63a8abeb4afb75e9da46c7d6c0a8afd5 (patch) | |
tree | 1352ac655ca27a99ae3de2af28907b88bec7d630 /Doc/whatsnew | |
parent | caf7a30efecef21def997ab214dc6c1604d90a84 (diff) | |
download | cpython-03c52f2f63a8abeb4afb75e9da46c7d6c0a8afd5.zip cpython-03c52f2f63a8abeb4afb75e9da46c7d6c0a8afd5.tar.gz cpython-03c52f2f63a8abeb4afb75e9da46c7d6c0a8afd5.tar.bz2 |
bpo-37951: Lift subprocess's fork() restriction (GH-15544)
(cherry picked from commit 98d90f745d35d5d07bffcb46788b50e05eea56c6)
Co-authored-by: Christian Heimes <christian@python.org>
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. |