blob: 92f78a42f92fe29404dc810a8cfe51bbc872c6d6 [file]
from typing import Any, Dict, Generic, TypeVar, Sequence
from types import ModuleType
T = TypeVar('T')
S = TypeVar('S')
class list(Generic[T], Sequence[T]): pass # type: ignore
class object:
def __init__(self) -> None: pass
class type: pass
class function: pass
class int: pass
class float: pass
class str: pass
class bool: pass
class tuple(Generic[T]): pass
class dict(Generic[T, S]): pass
class ellipsis: pass
classmethod = object()
staticmethod = object()
property = object()
def hasattr(x: object, name: str) -> bool: pass