mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
18 lines
701 B
Python
18 lines
701 B
Python
from _asyncio import Future as Future
|
|
from concurrent.futures._base import Future as _ConcurrentFuture
|
|
from typing import Any, TypeVar
|
|
from typing_extensions import TypeIs
|
|
|
|
from .events import AbstractEventLoop
|
|
|
|
# Keep asyncio.__all__ updated with any changes to __all__ here
|
|
__all__ = ("Future", "wrap_future", "isfuture")
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
# asyncio defines 'isfuture()' in base_futures.py and re-imports it in futures.py
|
|
# but it leads to circular import error in pytype tool.
|
|
# That's why the import order is reversed.
|
|
def isfuture(obj: object) -> TypeIs[Future[Any]]: ...
|
|
def wrap_future(future: _ConcurrentFuture[_T] | Future[_T], *, loop: AbstractEventLoop | None = None) -> Future[_T]: ...
|