We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab52431 commit d0b5b36Copy full SHA for d0b5b36
1 file changed
src/core/IronPython.StdLib/lib/test/test_grammar.py
@@ -1474,12 +1474,13 @@ async def foo():
1474
pass
1475
async with manager() as (x, y):
1476
1477
- async with manager(), manager():
1478
- pass
1479
- async with manager() as x, manager() as y:
1480
1481
- async with manager() as x, manager():
1482
+ # ironpython: todo implement this
+ #async with manager(), manager():
+ # pass
+ #async with manager() as x, manager() as y:
+ #async with manager() as x, manager():
1483
1484
raise Done
1485
1486
with self.assertRaises(Done):
0 commit comments