https://github.com/python/cpython/commit/c8c13f8036051c2858956905769b7b9dfde4bbd7 commit: c8c13f8036051c2858956905769b7b9dfde4bbd7 branch: main author: Hood Chatham <roberthoodchat...@gmail.com> committer: freakboy3742 <russ...@keith-magee.com> date: 2025-06-20T05:27:02+08:00 summary:
gh-127146: Add skip_emscripten_stack_overflow in a few places (#135722) More tests that hit stack limits on some platforms. files: M Lib/test/test_exceptions.py diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 175ef53138689e..57d0656487d4db 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -1445,6 +1445,7 @@ def foo(): foo() support.gc_collect() + @support.skip_emscripten_stack_overflow() @cpython_only def test_recursion_normalizing_exception(self): import_module("_testinternalcapi") @@ -1522,6 +1523,7 @@ def test_recursion_normalizing_infinite_exception(self): self.assertIn(b'Done.', out) + @support.skip_emscripten_stack_overflow() def test_recursion_in_except_handler(self): def set_relative_recursion_limit(n): _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: arch...@mail-archive.com