mirror of https://github.com/astral-sh/ruff
42 lines
620 B
Python
42 lines
620 B
Python
from typing import Generator, AsyncGenerator
|
|
|
|
|
|
def func() -> Generator[int, None, None]:
|
|
yield 42
|
|
|
|
|
|
def func() -> Generator[int, None]:
|
|
yield 42
|
|
|
|
|
|
def func() -> Generator[int]:
|
|
yield 42
|
|
|
|
|
|
def func() -> Generator[int, int, int]:
|
|
foo = yield 42
|
|
return foo
|
|
|
|
|
|
def func() -> Generator[int, int, None]:
|
|
_ = yield 42
|
|
return None
|
|
|
|
|
|
def func() -> Generator[int, None, int]:
|
|
yield 42
|
|
return 42
|
|
|
|
|
|
async def func() -> AsyncGenerator[int, None]:
|
|
yield 42
|
|
|
|
|
|
async def func() -> AsyncGenerator[int]:
|
|
yield 42
|
|
|
|
|
|
async def func() -> AsyncGenerator[int, int]:
|
|
foo = yield 42
|
|
return foo
|