https://github.com/python/cpython/commit/1857a40807daeae3a1bf5efb682de9c9ae6df845
commit: 1857a40807daeae3a1bf5efb682de9c9ae6df845
branch: main
author: Russell Keith-Magee <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2026-01-14T06:03:04+08:00
summary:

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.

files:
M Lib/test/support/__init__.py

diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index 7bc2e1f3150035..3a639497fa1272 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

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to