summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2021-11-22 14:44:57 (GMT)
committerGitHub <noreply@github.com>2021-11-22 14:44:57 (GMT)
commit4fad314246399b69ef0c57ba8527d9efade99069 (patch)
tree3936544878ef64612634cfd76a2e8fa42998f001 /Lib
parenteee683cbde499e62fc90ad366f7c45625fe92150 (diff)
downloadcpython-4fad314246399b69ef0c57ba8527d9efade99069.zip
cpython-4fad314246399b69ef0c57ba8527d9efade99069.tar.gz
cpython-4fad314246399b69ef0c57ba8527d9efade99069.tar.bz2
bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_collections.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 1bfd44f..48327bf 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -668,6 +668,7 @@ class TestNamedTuple(unittest.TestCase):
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)