File tree 3 files changed +0
-8
lines changed 3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -966,8 +966,6 @@ def test_getitem_error(self):
966
966
with self .assertRaisesRegex (TypeError , msg ):
967
967
b ['a' ]
968
968
969
- # TODO: RUSTPYTHON
970
- @unittest .expectedFailure
971
969
def test_buffer_is_readonly (self ):
972
970
fd = os .open (__file__ , os .O_RDONLY )
973
971
with open (fd , "rb" , buffering = 0 ) as f :
@@ -1176,8 +1174,6 @@ def test_setitem_error(self):
1176
1174
def test_nohash (self ):
1177
1175
self .assertRaises (TypeError , hash , bytearray ())
1178
1176
1179
- # TODO: RUSTPYTHON
1180
- @unittest .expectedFailure
1181
1177
def test_bytearray_api (self ):
1182
1178
short_sample = b"Hello world\n "
1183
1179
sample = short_sample + b"\0 " * (20 - len (short_sample ))
Original file line number Diff line number Diff line change @@ -317,8 +317,6 @@ def test_release(self):
317
317
m .release ()
318
318
self ._check_released (m , tp )
319
319
320
- # TODO: RUSTPYTHON
321
- @unittest .expectedFailure
322
320
def test_writable_readonly (self ):
323
321
# Issue #10451: memoryview incorrectly exposes a readonly
324
322
# buffer as writable causing a segfault if using mmap
Original file line number Diff line number Diff line change @@ -2223,8 +2223,6 @@ def test_codecs(self):
2223
2223
for encoding in ('utf-8' ,):
2224
2224
self .assertEqual (str (u .encode (encoding ),encoding ), u )
2225
2225
2226
- # TODO: RUSTPYTHON
2227
- @unittest .expectedFailure
2228
2226
def test_codecs_charmap (self ):
2229
2227
# 0-127
2230
2228
s = bytes (range (128 ))
You can’t perform that action at this time.
0 commit comments