summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins/2021-03-03-17-58-49.bpo-43390.epPpwV.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins/2021-03-03-17-58-49.bpo-43390.epPpwV.rst')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-03-03-17-58-49.bpo-43390.epPpwV.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-03-17-58-49.bpo-43390.epPpwV.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-03-17-58-49.bpo-43390.epPpwV.rst
deleted file mode 100644
index ae115db..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2021-03-03-17-58-49.bpo-43390.epPpwV.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-CPython now sets the ``SA_ONSTACK`` flag in ``PyOS_setsig`` for the VM's
-default signal handlers. This is friendlier to other in-process code that
-an extension module or embedding use could pull in (such as Golang's cgo)
-where tiny thread stacks are the norm and ``sigaltstack()`` has been used to
-provide for signal handlers. This is a no-op change for the vast majority
-of processes that don't use sigaltstack.