Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Lib/test/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -1707,7 +1707,6 @@ def test_gh_128961(self):
# when the index conversion mutates the array.
# See: https://github.com/python/cpython/issues/142555.

@unittest.skip("TODO: RUSTPYTHON; Hangs")
@subTests("dtype", ["b", "B", "h", "H", "i", "l", "q", "I", "L", "Q"])
def test_setitem_use_after_clear_with_int_data(self, dtype):
victim = array.array(dtype, list(range(64)))
Expand All @@ -1720,7 +1719,6 @@ def __index__(self):
self.assertRaises(IndexError, victim.__setitem__, 1, Index())
self.assertEqual(len(victim), 0)

@unittest.skip("TODO: RUSTPYTHON; Hangs")
def test_setitem_use_after_shrink_with_int_data(self):
victim = array.array('b', [1, 2, 3])

Expand All @@ -1732,7 +1730,6 @@ def __index__(self):

self.assertRaises(IndexError, victim.__setitem__, 1, Index())

@unittest.skip("TODO: RUSTPYTHON; Hangs")
@subTests("dtype", ["f", "d"])
def test_setitem_use_after_clear_with_float_data(self, dtype):
victim = array.array(dtype, [1.0, 2.0, 3.0])
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_marshal.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,6 @@ def testModule(self):
self.helper(code)
self.helper3(code)

@unittest.skip("TODO: RUSTPYTHON")
def testRecursion(self):
obj = 1.2345
d = {"hello": obj, "goodbye": obj, obj: "hello"}
Expand Down
2 changes: 0 additions & 2 deletions Lib/test/test_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ def test_set_done_unstarted(self):
with self.assertRaisesRegex(RuntimeError, "thread not started"):
handle._set_done()

@unittest.skipIf(__import__("sys").platform == "linux", "TODO: RUSTPYTHON; panic")
def test_start_duplicate_handle(self):
lock = thread.allocate_lock()
lock.acquire()
Expand All @@ -339,7 +338,6 @@ def func():
lock.release()
handle.join()

@unittest.skipIf(__import__("sys").platform == "linux", "TODO: RUSTPYTHON; panic")
def test_start_with_none_handle(self):
def func():
pass
Expand Down
Loading