From: Carl Friedrich Bolz-Tereick Date: Mon, 22 Nov 2021 14:44:57 +0000 (+0100) Subject: bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) X-Git-Tag: v3.11.0a3~166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fad314246399b69ef0c57ba8527d9efade99069;p=thirdparty%2FPython%2Fcpython.git bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) --- diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index 1bfd44f95478..48327bf50ea4 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -668,6 +668,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)