summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-08-27 21:56:27 (GMT)
committerGitHub <noreply@github.com>2019-08-27 21:56:27 (GMT)
commit03c52f2f63a8abeb4afb75e9da46c7d6c0a8afd5 (patch)
tree1352ac655ca27a99ae3de2af28907b88bec7d630 /Misc
parentcaf7a30efecef21def997ab214dc6c1604d90a84 (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-27-10-03-48.bpo-37951.MfRQgL.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-27-10-03-48.bpo-37951.MfRQgL.rst b/Misc/NEWS.d/next/Library/2019-08-27-10-03-48.bpo-37951.MfRQgL.rst
new file mode 100644
index 0000000..18e4c62
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-27-10-03-48.bpo-37951.MfRQgL.rst
@@ -0,0 +1,2 @@
+Most features of the subprocess module now work again in subinterpreters.
+Only *preexec_fn* is restricted in subinterpreters.