@@ -48,8 +48,7 @@ def test_keyword_args(self):
48
48
with self .assertRaisesRegex (TypeError , 'keyword argument' ):
49
49
list (sequence = [])
50
50
51
- # TODO: RUSTPYTHON
52
- @unittest .expectedFailure
51
+ @unittest .expectedFailure # TODO: RUSTPYTHON
53
52
def test_keywords_in_subclass (self ):
54
53
class subclass (list ):
55
54
pass
@@ -105,8 +104,7 @@ def test_empty_slice(self):
105
104
x [:] = x
106
105
self .assertEqual (x , [])
107
106
108
- # TODO: RUSTPYTHON
109
- @unittest .skip ("TODO: RUSTPYTHON crash" )
107
+ @unittest .skip ("TODO: RUSTPYTHON; crash" )
110
108
def test_list_resize_overflow (self ):
111
109
# gh-97616: test new_allocated * sizeof(PyObject*) overflow
112
110
# check in list_resize()
@@ -120,8 +118,7 @@ def test_list_resize_overflow(self):
120
118
with self .assertRaises ((MemoryError , OverflowError )):
121
119
lst *= size
122
120
123
- # TODO: RUSTPYTHON
124
- @unittest .skip ("TODO: RUSTPYTHON hangs" )
121
+ @unittest .skip ("TODO: RUSTPYTHON; hangs" )
125
122
def test_repr_mutate (self ):
126
123
class Obj :
127
124
@staticmethod
@@ -230,7 +227,6 @@ class L(list): pass
230
227
with self .assertRaises (TypeError ):
231
228
(3 ,) + L ([1 ,2 ])
232
229
233
- # TODO: RUSTPYTHON
234
230
@unittest .skip ("TODO: RUSTPYTHON; hang" )
235
231
def test_equal_operator_modifying_operand (self ):
236
232
# test fix for seg fault reported in bpo-38588 part 2.
@@ -257,7 +253,6 @@ def __eq__(self, other):
257
253
list4 = [1 ]
258
254
self .assertFalse (list3 == list4 )
259
255
260
- # TODO: RUSTPYTHON
261
256
@unittest .skip ("TODO: RUSTPYTHON; hang" )
262
257
def test_lt_operator_modifying_operand (self ):
263
258
# See gh-120298
0 commit comments