blob: 61e48be4510e72cbbde9d0f5ccb63e4af4d55d50 [file]
from typing import Generic, Iterable, TypeVar
class object:
def __init__(self) -> None: pass
class type:
def __init__(self, x) -> None: pass
class function: pass
class int: pass
class str: pass
class unicode: pass
T = TypeVar('T')
class list(Iterable[T], Generic[T]): pass
# Definition of None is implicit