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
2 changes: 0 additions & 2 deletions Lib/test/test_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2576,15 +2576,13 @@ def test_if_else(self):
def test_binop(self):
self.check_stack_size("x + " * self.N + "x")

@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: 101 not less than or equal to 6
def test_list(self):
self.check_stack_size("[" + "x, " * self.N + "x]")

@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: 101 not less than or equal to 6
def test_tuple(self):
self.check_stack_size("(" + "x, " * self.N + "x)")

@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: 101 not less than or equal to 6
def test_set(self):
self.check_stack_size("{" + "x, " * self.N + "x}")

Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_peepholer.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,6 @@ def test_constant_folding_binop(self):
self.check_lnotab(code)


@unittest.expectedFailure # TODO: RUSTPYTHON
def test_constant_folding_remove_nop_location(self):
sources = [
"""
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_tstring.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ def test_conversions(self):
with self.assertRaises(SyntaxError):
eval("t'{num!z}'")

@unittest.expectedFailure # TODO: RUSTPYTHON; ? ++++++
def test_debug_specifier(self):
# Test debug specifier
value = 42
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4697,7 +4697,6 @@ class D(Generic[T]): pass
with self.assertRaises(TypeError):
D[()]

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_generic_init_subclass_not_called_error(self):
notes = ["Note: this exception may have been caused by "
r"'GenericTests.test_generic_init_subclass_not_called_error.<locals>.Base.__init_subclass__' "
Expand Down
Loading
Loading