diff options
author | Mark Shannon <mark@hotpy.org> | 2023-12-22 14:25:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 14:25:25 (GMT) |
commit | 45e09f921be55e23bed19b5db4c95ce7bd7aad6b (patch) | |
tree | 8ff185ad0ce752b72c9b18f8766c6d2a035643dd /Lib/test/test_support.py | |
parent | 5f665e99e0b8a52415f83c2416eaf28abaacc3ae (diff) | |
download | cpython-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.py | 2 |
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() |