blob: 96ade881111b325ebf55be6f1df4d6ee3da8fd9d [file]
import typing
T = typing.TypeVar('T')
U = typing.TypeVar('U')
class list(typing.Sequence[T]):
def __iter__(self) -> typing.Iterator[T]: ...
def __getitem__(self, i: int) -> T: ...
def __contains__(self, item: object) -> bool: ...
class object:
def __init__(self) -> None: pass
class type: pass
class function: pass
class int: pass
class float: pass
class str: pass
class bool(int): pass
class dict(typing.Generic[T, U]): pass
class set(typing.Generic[T]): pass
class tuple(typing.Generic[T]): pass
class BaseException: pass
class StopIteration(BaseException): pass
class StopAsyncIteration(BaseException): pass
def iter(obj: typing.Any) -> typing.Any: pass
def next(obj: typing.Any) -> typing.Any: pass
class ellipsis: ...