summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVladimir Feinberg <vlad17@users.noreply.github.com>2021-07-12 15:58:47 (GMT)
committerGitHub <noreply@github.com>2021-07-12 15:58:47 (GMT)
commit489c27358376e772a61753c3f67daa836ca1eab7 (patch)
tree1375d3ee17e23f5615c86c489f0b76e260c177a9 /Misc
parent47abf240365ddd54a91c6ac167900d4bf6806c4f (diff)
downloadcpython-489c27358376e772a61753c3f67daa836ca1eab7.zip
cpython-489c27358376e772a61753c3f67daa836ca1eab7.tar.gz
cpython-489c27358376e772a61753c3f67daa836ca1eab7.tar.bz2
[3.9] bpo-43048: RecursionError traceback RecursionError bugfix for cpy3.9 (GH-24460) (#24460)
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-06-05-34-01.bpo-43048.yCPUmo.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-06-05-34-01.bpo-43048.yCPUmo.rst b/Misc/NEWS.d/next/Library/2021-02-06-05-34-01.bpo-43048.yCPUmo.rst
new file mode 100644
index 0000000..99f6b2b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-06-05-34-01.bpo-43048.yCPUmo.rst
@@ -0,0 +1 @@
+Handle `RecursionError` in :class:`~traceback.TracebackException`'s constructor, so that long exceptions chains are truncated instead of causing traceback formatting to fail.