Files
Pyarmor-Static-Unpack-1shot/tests/tokenized/async_def.txt
Michael Hansen de3f7982c3 Support 'yield from' (Python 3.3) and await (Python 3.5) expressions.
Currently unsupported are yield from in newer Python versions, and
yield/yield from into an assignment expression.
2019-10-10 10:59:10 -07:00

8 lines
120 B
Plaintext

async def foobar ( ) : <EOL>
<INDENT>
pass <EOL>
<OUTDENT>
async def barfoo ( ) : <EOL>
<INDENT>
await foobar ( ) <EOL>