From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 13 Jan 2026 22:45:54 +0000 (+0100) Subject: [3.14] gh-143460: Correct unlimited stack size skip for Emscripten (GH-143765) (... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95fe86e10f61c00906ec60200d2a8d530b9dd0c6;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-143460: Correct unlimited stack size skip for Emscripten (GH-143765) (#143819) Modifies the test skip for unlimited stack size to add Emscripten to the exclusion list. (cherry picked from commit 1857a40807daeae3a1bf5efb682de9c9ae6df845) Co-authored-by: Russell Keith-Magee --- diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index a0dcd517d9b4..aa87fd6afcac 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1694,7 +1694,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