From 9d1ce423ef943ed9aed7388cfc68698272ed6b04 Mon Sep 17 00:00:00 2001 From: Carl Friedrich Bolz-Tereick Date: Mon, 22 Nov 2021 15:44:57 +0100 Subject: [PATCH] bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (cherry picked from commit 4fad314246399b69ef0c57ba8527d9efade99069) Co-authored-by: Carl Friedrich Bolz-Tereick --- Lib/test/test_collections.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 75af29b2dc72d9..3404b8ad1bcf73 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -668,6 +668,7 @@ class Point(namedtuple('_Point', ['x', 'y'])): 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)