From: Jeong, YunWon <69878+youknowone@users.noreply.github.com> Date: Thu, 22 Jan 2026 11:08:08 +0000 (+0900) Subject: gh-143001: Add @cpython_only to test_sys.test_current_frames() (#144004) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67535ab2d26c83dd4658f67d35f072fc563c618f;p=thirdparty%2FPython%2Fcpython.git gh-143001: Add @cpython_only to test_sys.test_current_frames() (#144004) --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index bdc0d75ba0cf..a5708b298c84 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):