mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
@@ -376,6 +376,10 @@ class AsyncGeneratorType(AsyncGenerator[_T_co, _T_contra]):
|
||||
def ag_await(self) -> Awaitable[Any] | None: ...
|
||||
__name__: str
|
||||
__qualname__: str
|
||||
if sys.version_info >= (3, 12):
|
||||
@property
|
||||
def ag_suspended(self) -> bool: ...
|
||||
|
||||
def __aiter__(self) -> AsyncGeneratorType[_T_co, _T_contra]: ...
|
||||
def __anext__(self) -> Coroutine[Any, Any, _T_co]: ...
|
||||
def asend(self, __val: _T_contra) -> Coroutine[Any, Any, _T_co]: ...
|
||||
|
||||
@@ -163,7 +163,6 @@ turtle.TNavigator.teleport
|
||||
turtle.TPen.teleport
|
||||
turtle.__all__
|
||||
turtle.teleport
|
||||
types.AsyncGeneratorType.ag_suspended
|
||||
typing.ParamSpec.__mro_entries__
|
||||
typing.ParamSpecArgs.__mro_entries__
|
||||
typing.ParamSpecKwargs.__mro_entries__
|
||||
|
||||
Reference in New Issue
Block a user