[Python-checkins] bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29710)

ambv webhook-mailer at python.org
Fri Dec 10 19:02:04 EST 2021


https://github.com/python/cpython/commit/7c5b01b5101923fc38274c491bd55239ee9f0416
commit: 7c5b01b5101923fc38274c491bd55239ee9f0416
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-12-11T01:02:00+01:00
summary:

bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29710)

(cherry picked from commit 4fad314246399b69ef0c57ba8527d9efade99069)

Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>

files:
M Lib/test/test_collections.py

diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index a961821230c7b..6b55b892091f3 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -589,6 +589,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)



More information about the Python-checkins mailing list