INNER CODE UNIT · Python
async_gen
hynek/svcs · typing_tests/base.py:62
async def async_gen() -> AsyncGenerator:
yield 42
@contextlib.asynccontextmanager
async def async_cm() -> AsyncGenerator:
yield 42
def factory_with_cleanup() -> Generator[int, None, None]:
yield 1
@contextlib.contextmanager
def factory_with_cleanup_ctx() -> Generator[int, None, None]:
yield 1