Merge branch 'main' into lazy

This commit is contained in:
T. Wouters 2025-12-07 18:58:30 -05:00 committed by GitHub
commit a0a28c23b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
80 changed files with 5788 additions and 2114 deletions

View file

@ -992,7 +992,8 @@ def next(self):
@skip_wasi_stack_overflow()
@skip_emscripten_stack_overflow()
def test_ast_recursion_limit(self):
crash_depth = 500_000
# Android test devices have less memory.
crash_depth = 100_000 if sys.platform == "android" else 500_000
success_depth = 200
if _testinternalcapi is not None:
remaining = _testinternalcapi.get_c_recursion_remaining()