summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins/2021-09-07-00-21-04.bpo-44348.f8w_Td.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins/2021-09-07-00-21-04.bpo-44348.f8w_Td.rst')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-09-07-00-21-04.bpo-44348.f8w_Td.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-09-07-00-21-04.bpo-44348.f8w_Td.rst b/Misc/NEWS.d/next/Core and Builtins/2021-09-07-00-21-04.bpo-44348.f8w_Td.rst
deleted file mode 100644
index c222a07..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2021-09-07-00-21-04.bpo-44348.f8w_Td.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-The deallocator function of the :exc:`BaseException` type now uses the
-trashcan mecanism to prevent stack overflow. For example, when a
-:exc:`RecursionError` instance is raised, it can be linked to another
-RecursionError through the ``__context__`` attribute or the
-``__traceback__`` attribute, and then a chain of exceptions is created. When
-the chain is destroyed, nested deallocator function calls can crash with a
-stack overflow if the chain is too long compared to the available stack
-memory. Patch by Victor Stinner.