Skip to content

Commit 56b5cd5

Browse files
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29708)
(cherry picked from commit 4fad314) Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de>
1 parent 10343bd commit 56b5cd5

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)