Skip to content

Commit 455ed45

Browse files
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29709)
1 parent e81e1d7 commit 455ed45

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)