File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
com.oracle.graal.python.test/src/tests/unittest_tags Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 65
65
*graalpython.lib-python.3.test.test_types.TypesTests.test_int__format__
66
66
*graalpython.lib-python.3.test.test_types.TypesTests.test_int__format__locale
67
67
*graalpython.lib-python.3.test.test_types.TypesTests.test_internal_sizes
68
+ *graalpython.lib-python.3.test.test_types.TypesTests.test_method_descriptor_types
68
69
*graalpython.lib-python.3.test.test_types.TypesTests.test_method_wrapper_types
69
70
*graalpython.lib-python.3.test.test_types.TypesTests.test_normal_integers
70
71
*graalpython.lib-python.3.test.test_types.TypesTests.test_numeric_types
Original file line number Diff line number Diff line change @@ -590,6 +590,7 @@ def test_method_wrapper_types(self):
590
590
self .assertIsInstance (object ().__lt__ , types .MethodWrapperType )
591
591
self .assertIsInstance ((42 ).__lt__ , types .MethodWrapperType )
592
592
593
+ @support .impl_detail (graalvm = False )
593
594
def test_method_descriptor_types (self ):
594
595
self .assertIsInstance (str .join , types .MethodDescriptorType )
595
596
self .assertIsInstance (list .append , types .MethodDescriptorType )
You can’t perform that action at this time.
0 commit comments