]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691)
authorCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>
Mon, 22 Nov 2021 14:44:57 +0000 (15:44 +0100)
committerGitHub <noreply@github.com>
Mon, 22 Nov 2021 14:44:57 +0000 (08:44 -0600)
Lib/test/test_collections.py

index 1bfd44f954788165409b2c0d427a20733c7af461..48327bf50ea42384b5268540dbea9237380f5d4b 100644 (file)
@@ -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)