From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 11 Dec 2021 00:02:00 +0000 (-0800) Subject: bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691... X-Git-Tag: v3.8.13~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c5b01b5101923fc38274c491bd55239ee9f0416;p=thirdparty%2FPython%2Fcpython.git bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29710) (cherry picked from commit 4fad314246399b69ef0c57ba8527d9efade99069) Co-authored-by: Carl Friedrich Bolz-Tereick --- diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py index a961821230c7..6b55b892091f 100644 --- a/Lib/test/test_collections.py +++ b/Lib/test/test_collections.py @@ -589,6 +589,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)