Skip to content

Commit 723766e

Browse files
authored
Don't skip passing ast tests (#7900)
1 parent 3ed8c91 commit 723766e

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Lib/test/test_ast/test_ast.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1983,7 +1983,6 @@ def test_level_as_none(self):
19831983
exec(code, ns)
19841984
self.assertIn('sleep', ns)
19851985

1986-
@unittest.skip("TODO: RUSTPYTHON; crash")
19871986
@skip_if_unlimited_stack_size
19881987
@skip_emscripten_stack_overflow()
19891988
def test_recursion_direct(self):
@@ -1993,7 +1992,6 @@ def test_recursion_direct(self):
19931992
with support.infinite_recursion():
19941993
compile(ast.Expression(e), "<test>", "eval")
19951994

1996-
@unittest.skip("TODO: RUSTPYTHON; crash")
19971995
@skip_if_unlimited_stack_size
19981996
@skip_emscripten_stack_overflow()
19991997
def test_recursion_indirect(self):
@@ -2356,7 +2354,6 @@ def test_yield(self):
23562354
self.expr(ast.Yield(ast.Name("x", ast.Store())), "must have Load")
23572355
self.expr(ast.YieldFrom(ast.Name("x", ast.Store())), "must have Load")
23582356

2359-
@unittest.skip("TODO: RUSTPYTHON; thread 'main' panicked")
23602357
def test_compare(self):
23612358
left = ast.Name("x", ast.Load())
23622359
comp = ast.Compare(left, [ast.In()], [])

0 commit comments

Comments
 (0)