summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
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 /Lib/test/test_support.py
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 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index c34b0e5..d160cbf 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -630,7 +630,7 @@ class TestSupport(unittest.TestCase):
if depth:
recursive_function(depth - 1)
- for max_depth in (5, 25, 250):
+ for max_depth in (5, 25, 250, 2500):
with support.infinite_recursion(max_depth):
available = support.get_recursion_available()