mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 15:13:13 +07:00
# Conflicts: # community/python/python-psi-impl/src/com/jetbrains/python/validation/PyAsyncAwaitAnnotator.java GitOrigin-RevId: 125a714f769ac93c8516250ae5b92afff14518f0
13 lines
187 B
Python
13 lines
187 B
Python
import asyncio
|
|
|
|
async def genfunc():
|
|
yield 1
|
|
|
|
async def example():
|
|
async for x in genfunc():
|
|
pass
|
|
|
|
async def example_correct():
|
|
async for x in genfunc():
|
|
pass
|