Skip to content

Commit d0b5b36

Browse files
committed
Disable failing grammar
1 parent ab52431 commit d0b5b36

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,12 +1474,13 @@ async def foo():
14741474
pass
14751475
async with manager() as (x, y):
14761476
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
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
14831484
raise Done
14841485

14851486
with self.assertRaises(Done):

0 commit comments

Comments
 (0)