summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorxdegaye <xdegaye@gmail.com>2017-10-26 15:48:48 (GMT)
committerGitHub <noreply@github.com>2017-10-26 15:48:48 (GMT)
commit4b27d51222be751125e6800453a39360a2dec11d (patch)
treec41987cae0bf6f909eb7fb0b454a8746912b2403 /Doc
parentd94ef8fe94ed192a24a71117c07e6c7b60a8ac6c (diff)
downloadcpython-4b27d51222be751125e6800453a39360a2dec11d.zip
cpython-4b27d51222be751125e6800453a39360a2dec11d.tar.gz
cpython-4b27d51222be751125e6800453a39360a2dec11d.tar.bz2
[3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4135)
(cherry picked from commit 56d1f5ca32892c7643eb8cee49c40c1644f1abfe)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.6.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 1301f4c..847b501 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -1852,6 +1852,11 @@ Build and C API Changes
* The :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`
functions will now accept :term:`path-like objects <path-like object>`.
+* The ``PyExc_RecursionErrorInst`` singleton that was part of the public API
+ has been removed as its members being never cleared may cause a segfault
+ during finalization of the interpreter. Contributed by Xavier de Gaye in
+ :issue:`22898` and :issue:`30697`.
+
Other Improvements
==================