summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorStéphane Wirtel <stephane@wirtel.be>2019-02-20 14:27:22 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-02-20 14:27:22 (GMT)
commitb5409dacc4885146a27d06482b346e55fa12d2ec (patch)
tree61a158b3f90ebc0202d4b74093531a6527538039 /Misc
parent001fee14e0f2ba5f41fb733adc69d5965925a094 (diff)
downloadcpython-b5409dacc4885146a27d06482b346e55fa12d2ec.zip
cpython-b5409dacc4885146a27d06482b346e55fa12d2ec.tar.gz
cpython-b5409dacc4885146a27d06482b346e55fa12d2ec.tar.bz2
bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852)
Fix a crash on fork when using subinterpreters.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-02-14-09-17-54.bpo-35993.Bvm3fP.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-14-09-17-54.bpo-35993.Bvm3fP.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-14-09-17-54.bpo-35993.Bvm3fP.rst
new file mode 100644
index 0000000..3966f29
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-02-14-09-17-54.bpo-35993.Bvm3fP.rst
@@ -0,0 +1 @@
+Fix a crash on fork when using subinterpreters. Contributed by Stéphane Wirtel