Skip to content

Commit a056e7b

Browse files
committed
Remove comment
1 parent fa6b820 commit a056e7b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_array.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -889,8 +889,6 @@ def test_setslice(self):
889889
self.assertRaises(TypeError, a.__setitem__, slice(0, 0), b)
890890
self.assertRaises(TypeError, a.__setitem__, slice(0, 1), b)
891891

892-
# TODO: RUSTPYTHON
893-
# @unittest.expectedFailure
894892
def test_extended_set_del_slice(self):
895893
indices = (0, None, 1, 3, 19, 100, sys.maxsize, -1, -2, -31, -100)
896894
for start in indices:
@@ -1213,8 +1211,6 @@ def test_extslice(self):
12131211
self.assertEqual(a[1000:2000:2], array.array(self.typecode, []))
12141212
self.assertEqual(a[-1000:-2000:-2], array.array(self.typecode, []))
12151213

1216-
# TODO: RUSTPYTHON
1217-
# @unittest.expectedFailure
12181214
def test_delslice(self):
12191215
a = array.array(self.typecode, range(5))
12201216
del a[::2]

0 commit comments

Comments
 (0)