blob: 282839dcef28f3b862c103af9bd54421cde45fa9 [file]
import typing
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.
classmethod = object()
staticmethod = object()
class int:
@classmethod
def from_bytes(cls, bytes: bytes, byteorder: str) -> int: pass
class str: pass
class bytes: pass
class bool: pass