blob: 03ad803890a3d2e25fceb65cc80be3ddca9a7358 [file] [log] [blame]
import typing
_T = typing.TypeVar('_T')
class object:
def __init__(self) -> None: pass
class type:
def __init__(self, x) -> None: pass
def mro(self) -> typing.Any: pass
class function: pass
# Dummy definitions.
class classmethod: pass
class staticmethod: pass
class int:
@classmethod
def from_bytes(cls, bytes: bytes, byteorder: str) -> int: pass
class float: pass
class str: pass
class bytes: pass
class bool: pass
class ellipsis: pass
class tuple(typing.Generic[_T]): pass