codestare.async_utils.type_vars module

codestare.async_utils.type_vars.T

Simple TypeVar

alias of TypeVar(‘T’)

codestare.async_utils.type_vars.S

Simple TypeVar

alias of TypeVar(‘S’)

codestare.async_utils.type_vars.R

Simple TypeVar

alias of TypeVar(‘R’)

codestare.async_utils.type_vars.T_Exception

bound to Exception

alias of TypeVar(‘T_Exception’, bound=Exception)

codestare.async_utils.type_vars.T_co

covariant values

alias of TypeVar(‘T_co’, covariant=True)

codestare.async_utils.type_vars.T_contra

contravariant values

alias of TypeVar(‘T_contra’, contravariant=True)

codestare.async_utils.type_vars.SimpleCoroutine

TypeAlias for a Coroutine that only cares about return Type

alias of Coroutine[Any, Any, T]