]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 22 Nov 2021 16:36:28 +0000 (08:36 -0800)
committerGitHub <noreply@github.com>
Mon, 22 Nov 2021 16:36:28 +0000 (10:36 -0600)
Lib/test/test_collections.py

index 9e1174743591cb03fdd80089a4e5ad089899c2b2..e320ef3732b215305110ca067416ae30b22ba4c2 100644 (file)
@@ -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)