Skip to content
Open
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
1 change: 0 additions & 1 deletion Lib/test/test_dis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,6 @@ def test_disassemble_class(self):
def test_disassemble_instance_method(self):
self.do_disassembly_test(_C(1).__init__, dis_c_instance_method)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_disassemble_instance_method_bytes(self):
method_bytecode = _C(1).__init__.__code__.co_code
self.do_disassembly_test(method_bytecode, dis_c_instance_method_bytes)
Expand Down
2 changes: 0 additions & 2 deletions Lib/test/test_yield_from.py
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,6 @@ def g():
yield from ()
self.assertRaises(StopIteration, next, g())

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_delegating_generators_claim_to_be_running(self):
# Check with basic iteration
def one():
Expand All @@ -909,7 +908,6 @@ def two():
pass
self.assertEqual(res, [0, 1, 2, 3])

@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: Lists differ: [0, 1, 2] != [0, 1, 2, 3]
def test_delegating_generators_claim_to_be_running_with_throw(self):
# Check with throw
class MyErr(Exception):
Expand Down
Loading
Loading