mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691)
This commit is contained in:
parent
eee683cbde
commit
4fad314246
1 changed files with 1 additions and 0 deletions
|
|
@ -668,6 +668,7 @@ class Point(namedtuple('_Point', ['x', 'y'])):
|
|||
a.w = 5
|
||||
self.assertEqual(a.__dict__, {'w': 5})
|
||||
|
||||
@support.cpython_only
|
||||
def test_field_descriptor(self):
|
||||
Point = namedtuple('Point', 'x y')
|
||||
p = Point(11, 22)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue