From 67535ab2d26c83dd4658f67d35f072fc563c618f Mon Sep 17 00:00:00 2001 From: "Jeong, YunWon" <69878+youknowone@users.noreply.github.com> Date: Thu, 22 Jan 2026 20:08:08 +0900 Subject: [PATCH] gh-143001: Add @cpython_only to test_sys.test_current_frames() (#144004) --- 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 bdc0d75ba0c..a5708b298c8 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -493,7 +493,7 @@ class SysModuleTest(unittest.TestCase): 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):