File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4057,8 +4057,6 @@ def test_heap(self):
40574057 self .assertEqual (len (heap ._allocated_blocks ), 0 , heap ._allocated_blocks )
40584058 self .assertEqual (len (heap ._len_to_seq ), 0 )
40594059
4060- # TODO: RUSTPYTHON - gc.enable() not implemented
4061- @unittest .expectedFailure
40624060 def test_free_from_gc (self ):
40634061 # Check that freeing of blocks by the garbage collector doesn't deadlock
40644062 # (issue #12352).
Original file line number Diff line number Diff line change @@ -678,8 +678,6 @@ def __del__(self):
678678 fut = self ._new_future (loop = self .loop )
679679 fut .set_result (Evil ())
680680
681- # TODO: RUSTPYTHON - gc.get_referrers not implemented
682- @unittest .expectedFailure
683681 def test_future_cancelled_result_refcycles (self ):
684682 f = self ._new_future (loop = self .loop )
685683 f .cancel ()
@@ -691,8 +689,6 @@ def test_future_cancelled_result_refcycles(self):
691689 self .assertIsNotNone (exc )
692690 self .assertListEqual (gc .get_referrers (exc ), [])
693691
694- # TODO: RUSTPYTHON - gc.get_referrers not implemented
695- @unittest .expectedFailure
696692 def test_future_cancelled_exception_refcycles (self ):
697693 f = self ._new_future (loop = self .loop )
698694 f .cancel ()
@@ -720,8 +716,6 @@ def test_future_del_segfault(self):
720716 with self .assertRaises (AttributeError ):
721717 del fut ._log_traceback
722718
723- # TODO: RUSTPYTHON - gc.get_referents not implemented
724- @unittest .expectedFailure
725719 def test_future_iter_get_referents_segfault (self ):
726720 # See https://github.com/python/cpython/issues/122695
727721 import _asyncio
You can’t perform that action at this time.
0 commit comments