gh-143001: Add @cpython_only to test_sys.test_current_frames() (#144004)

This commit is contained in:
Jeong, YunWon 2026-01-22 20:08:08 +09:00 committed by GitHub
parent d77aaa7311
commit 67535ab2d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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):