blob: 5aff9f8f1006fc59aa0349b92a542c23d2e7fa99 [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 str: pass
class bytes: pass
class bool: pass
class ellipsis: pass
class tuple(typing.Generic[_T]): pass