From 455ed45d7c30c5f2a31c524b015c48ac85f3d27c Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 22 Nov 2021 08:36:28 -0800 Subject: [PATCH] bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29709) --- 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 9e1174743591..e320ef3732b2 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) -- 2.47.3