Skip to content

Commit 7802846

Browse files
committed
Re-enable grammar test
1 parent b7a599f commit 7802846

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

src/core/IronPython.StdLib/lib/test/test_grammar.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,13 +1474,12 @@ async def foo():
14741474
pass
14751475
async with manager() as (x, y):
14761476
pass
1477-
# ironpython: todo implement this
1478-
#async with manager(), manager():
1479-
# pass
1480-
#async with manager() as x, manager() as y:
1481-
# pass
1482-
#async with manager() as x, manager():
1483-
# pass
1477+
async with manager(), manager():
1478+
pass
1479+
async with manager() as x, manager() as y:
1480+
pass
1481+
async with manager() as x, manager():
1482+
pass
14841483
raise Done
14851484

14861485
with self.assertRaises(Done):

0 commit comments

Comments
 (0)