[pypy-commit] pypy py3.7: skip an implementation detail

cfbolz pypy.commits at gmail.com
Fri Jan 31 17:02:21 EST 2020


Author: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>
Branch: py3.7
Changeset: r98621:cd4e6f012629
Date: 2020-01-31 22:52 +0100
http://bitbucket.org/pypy/pypy/changeset/cd4e6f012629/

Log:	skip an implementation detail

diff --git a/lib-python/3/test/test_types.py b/lib-python/3/test/test_types.py
--- a/lib-python/3/test/test_types.py
+++ b/lib-python/3/test/test_types.py
@@ -590,6 +590,7 @@
         self.assertIsInstance(object().__lt__, types.MethodWrapperType)
         self.assertIsInstance((42).__lt__, types.MethodWrapperType)
 
+    @impl_detail
     def test_method_descriptor_types(self):
         self.assertIsInstance(str.join, types.MethodDescriptorType)
         self.assertIsInstance(list.append, types.MethodDescriptorType)


More information about the pypy-commit mailing list