Skip to content

Commit 7c5b01b

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

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

592+
@support.cpython_only
592593
def test_field_descriptor(self):
593594
Point = namedtuple('Point', 'x y')
594595
p = Point(11, 22)

0 commit comments

Comments
 (0)