From 43b53af7cf5022fe9bec95f2bd2e7d98a7241ade Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: 2026年1月13日 08:14:05 +0800 Subject: [PATCH] Correct unlimited stack size skip for Emscripten. --- 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 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

AltStyle によって変換されたページ (->オリジナル) /