mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 05:07:31 +07:00
6 lines
178 B
Python
6 lines
178 B
Python
async def foo(x):
|
|
await x
|
|
<error descr="'yield' inside async function">yield x</error>
|
|
<error descr="'yield' inside async function">yield from x</error>
|
|
return x
|