Skip to content

Commit 4fad314

Browse files
authored
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691)
1 parent eee683c commit 4fad314

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
@@ -668,6 +668,7 @@ class Point(namedtuple('_Point', ['x', 'y'])):
668668
a.w = 5
669669
self.assertEqual(a.__dict__, {'w': 5})
670670

671+
@support.cpython_only
671672
def test_field_descriptor(self):
672673
Point = namedtuple('Point', 'x y')
673674
p = Point(11, 22)

0 commit comments

Comments
 (0)