From 7e9d9766f9e53653a3ef3af9ef559e9abad8b706 Mon Sep 17 00:00:00 2001 From: "Jeong, YunWon" Date: Mon, 19 Jan 2026 00:31:15 +0900 Subject: [PATCH] gh-143001 Add @cpython_only to test_sys.test_current_frames --- Lib/test/test_sys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 1d8e908efb0572..0e83e081d5e51d 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -494,7 +494,7 @@ def test_getframemodulename(self): self.assertIs(f, f2) self.assertIsNone(sys._getframemodulename(i)) - # sys._current_frames() is a CPython-only gimmick. + @support.cpython_only # sys._current_frames() is a CPython-only gimmick. @threading_helper.reap_threads @threading_helper.requires_working_threading() def test_current_frames(self):