massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / _py_abc.pyi
1 from typing import Any, Tuple, Type, TypeVar
2
3 _T = TypeVar("_T")
4
5 # TODO: Change the return into a NewType bound to int after pytype/#597
6 def get_cache_token() -> object: ...
7
8 class ABCMeta(type):
9     def __new__(__mcls, __name: str, __bases: Tuple[Type[Any], ...], __namespace: dict[str, Any]) -> ABCMeta: ...
10     def register(cls, subclass: Type[_T]) -> Type[_T]: ...