mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
Currently unsupported are yield from in newer Python versions, and yield/yield from into an assignment expression.
5 lines
69 B
Python
5 lines
69 B
Python
async def foobar():
|
|
pass
|
|
|
|
async def barfoo():
|
|
await foobar()
|