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.
7 lines
120 B
Text
7 lines
120 B
Text
async def foobar ( ) : <EOL>
|
|
<INDENT>
|
|
pass <EOL>
|
|
<OUTDENT>
|
|
async def barfoo ( ) : <EOL>
|
|
<INDENT>
|
|
await foobar ( ) <EOL>
|