From: Russell Keith-Magee Date: Tue, 13 Jan 2026 22:03:04 +0000 (+0800) Subject: gh-143460: Correct unlimited stack size skip for Emscripten (#143765) X-Git-Tag: v3.15.0a5~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1857a40807daeae3a1bf5efb682de9c9ae6df845;p=thirdparty%2FPython%2Fcpython.git 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. --- 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