massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3.4 / asyncio / coroutines.pyi
1 from typing import Any, Callable, Generator, List, TypeVar\r
2 \r
3 __all__: List[str]\r
4 \r
5 _F = TypeVar('_F', bound=Callable[..., Any])\r
6 \r
7 def coroutine(func: _F) -> _F: ...\r
8 def iscoroutinefunction(func: Callable[..., Any]) -> bool: ...\r
9 def iscoroutine(obj: Any) -> bool: ...\r