DEBSOURCES
Skip Quicknav
sources / python-pegen / 0.3.0-1 / tests / python_parser / data / with_statement_multi_items.py
1234567891011
with (a, c,): pass with (a as b, c): pass async with (a, c,): pass async with (a as b, c): pass