diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 9e117474359..e320ef3732b 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -663,6 +663,7 @@ class TestNamedTuple(unittest.TestCase): a.w = 5 self.assertEqual(a.__dict__, {'w': 5}) + @support.cpython_only def test_field_descriptor(self): Point = namedtuple('Point', 'x y') p = Point(11, 22)