Skip to content
Merged
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_ast/test_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,6 @@ def test_level_as_none(self):
exec(code, ns)
self.assertIn('sleep', ns)

@unittest.skip("TODO: RUSTPYTHON; crash")
@skip_if_unlimited_stack_size
@skip_emscripten_stack_overflow()
def test_recursion_direct(self):
Expand All @@ -1994,7 +1993,6 @@ def test_recursion_direct(self):
with support.infinite_recursion():
compile(ast.Expression(e), "<test>", "eval")

@unittest.skip("TODO: RUSTPYTHON; crash")
@skip_if_unlimited_stack_size
@skip_emscripten_stack_overflow()
def test_recursion_indirect(self):
Expand Down Expand Up @@ -2357,7 +2355,6 @@ def test_yield(self):
self.expr(ast.Yield(ast.Name("x", ast.Store())), "must have Load")
self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load")

@unittest.skip("TODO: RUSTPYTHON; thread 'main' panicked")
def test_compare(self):
left = ast.Name("x", ast.Load())
comp = ast.Compare(left, [ast.In()], [])
Expand Down
Loading