Skip to content

Commit d5aa68d

Browse files
fanninpmyouknowone
authored andcommitted
Clean up skips in test_itertools
1 parent 605f58c commit d5aa68d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Lib/test/test_itertools.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1550,8 +1550,6 @@ def test_tee(self):
15501550
self.pickletest(proto, b, compare=ans)
15511551

15521552
# Issue 13454: Crash when deleting backward iterator from tee()
1553-
# TODO: RUSTPYTHON
1554-
@unittest.skip("hangs")
15551553
def test_tee_del_backward(self):
15561554
forward, backward = tee(repeat(None, 20000000))
15571555
try:
@@ -1578,8 +1576,7 @@ def __next__(self):
15781576
with self.assertRaisesRegex(RuntimeError, "tee"):
15791577
next(a)
15801578

1581-
# TODO: RUSTPYTHON - hangs
1582-
@unittest.skip("hangs")
1579+
@unittest.skip("TODO: RUSTPYTHON, hangs")
15831580
def test_tee_concurrent(self):
15841581
start = threading.Event()
15851582
finish = threading.Event()

0 commit comments

Comments
 (0)