blob: ac1d3688ed12298cee71d2474ec4f2cc1ceb6a23 [file] [log] [blame]
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
class object:
def __init__(self) -> None: pass
class type: pass
class function: pass
class int: 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()