From 1857a40807daeae3a1bf5efb682de9c9ae6df845 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 14 Jan 2026 06:03:04 +0800 Subject: [PATCH] gh-143460: Correct unlimited stack size skip for Emscripten (#143765) Modifies the test skip for unlimited stack size to add Emscripten to the exclusion list. --- Lib/test/support/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 7bc2e1f31500..3a639497fa12 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1781,7 +1781,7 @@ def skip_if_unlimited_stack_size(test): See https://github.com/python/cpython/issues/143460. """ - if is_wasi or os.name == "nt": + if is_emscripten or is_wasi or os.name == "nt": return test import resource -- 2.47.3