File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,6 @@ def test_underscores(self):
89
89
# Check that we handle bytes values correctly.
90
90
self .assertRaises (ValueError , float , b'0_.\xff 9' )
91
91
92
- # TODO: RUSTPYTHON
93
- @unittest .expectedFailure
94
92
def test_non_numeric_input_types (self ):
95
93
# Test possible non-numeric types for the argument x, including
96
94
# subclasses of the explicitly documented accepted types.
@@ -120,8 +118,6 @@ class CustomByteArray(bytearray): pass
120
118
with self .assertRaisesRegex (ValueError , "could not convert" ):
121
119
float (f (b'A' * 0x10 ))
122
120
123
- # TODO: RUSTPYTHON
124
- @unittest .expectedFailure
125
121
def test_float_memoryview (self ):
126
122
self .assertEqual (float (memoryview (b'12.3' )[1 :4 ]), 2.3 )
127
123
self .assertEqual (float (memoryview (b'12.3\x00 ' )[1 :4 ]), 2.3 )
You can’t perform that action at this time.
0 commit comments