Skip to content

Commit f20b82a

Browse files
cfbolzmiss-islington
authored andcommitted
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691)
(cherry picked from commit 4fad314) Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de>
1 parent e81e1d7 commit f20b82a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_collections.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,7 @@ class Point(namedtuple('_Point', ['x', 'y'])):
663663
a.w = 5
664664
self.assertEqual(a.__dict__, {'w': 5})
665665

666+
@support.cpython_only
666667
def test_field_descriptor(self):
667668
Point = namedtuple('Point', 'x y')
668669
p = Point(11, 22)

0 commit comments

Comments
 (0)