mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
# Conflicts: # community/python/python-psi-impl/src/com/jetbrains/python/validation/PyAsyncAwaitAnnotator.java GitOrigin-RevId: 125a714f769ac93c8516250ae5b92afff14518f0
8 lines
177 B
Python
8 lines
177 B
Python
def example(x):
|
|
for i in <error descr="'await' outside async function">await</error> x:
|
|
yield i
|
|
|
|
async def example_correct(x):
|
|
for i in await x:
|
|
yield i
|