We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a00b59e commit 6c4fb93Copy full SHA for 6c4fb93
Lib/test/test_ast.py
@@ -817,7 +817,7 @@ def next(self):
817
@support.cpython_only
818
def test_ast_recursion_limit(self):
819
crash_depth = 100_000
820
- success_depth = 5_000
+ success_depth = 3_000
821
822
def check_limit(prefix, repeated):
823
expect_ok = prefix + repeated * success_depth
Lib/test/test_compile.py
@@ -547,7 +547,7 @@ def test_yet_more_evil_still_undecodable(self):
547
@unittest.skipIf(support.is_wasi, "exhausts limited stack on WASI")
548
def test_compiler_recursion_limit(self):
549
550
551
552
def check_limit(prefix, repeated, mode="single"):
553
0 commit comments