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