summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-12-22 14:25:25 (GMT)
committerGitHub <noreply@github.com>2023-12-22 14:25:25 (GMT)
commit45e09f921be55e23bed19b5db4c95ce7bd7aad6b (patch)
tree8ff185ad0ce752b72c9b18f8766c6d2a035643dd /Misc
parent5f665e99e0b8a52415f83c2416eaf28abaacc3ae (diff)
downloadcpython-45e09f921be55e23bed19b5db4c95ce7bd7aad6b.zip
cpython-45e09f921be55e23bed19b5db4c95ce7bd7aad6b.tar.gz
cpython-45e09f921be55e23bed19b5db4c95ce7bd7aad6b.tar.bz2
GH-112215: Increase C recursion limit for non debug builds (GH-113397)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-12-15-16-26-01.gh-issue-112215.xJS6_6.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-12-15-16-26-01.gh-issue-112215.xJS6_6.rst b/Misc/NEWS.d/next/Core and Builtins/2023-12-15-16-26-01.gh-issue-112215.xJS6_6.rst
new file mode 100644
index 0000000..01ca1cc
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-12-15-16-26-01.gh-issue-112215.xJS6_6.rst
@@ -0,0 +1,3 @@
+Increase the C recursion limit by a factor of 3 for non-debug builds, except
+for webassembly and s390 platforms which are unchanged. This mitigates some
+regressions in 3.12 with deep recursion mixing builtin (C) and Python code.