1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
from collections.abc import Callable, Sequence
from typing import TypeVar
__all__ = ["Error", "Packer", "Unpacker", "ConversionError"]
_T = TypeVar("_T")
class Error(Exception):
msg: str
def __init__(self, msg: str) -> None: ...
class ConversionError(Error): ...
class Packer:
def reset(self) -> None: ...
def get_buffer(self) -> bytes: ...
def get_buf(self) -> bytes: ...
def pack_uint(self, x: int) -> None: ...
def pack_int(self, x: int) -> None: ...
def pack_enum(self, x: int) -> None: ...
def pack_bool(self, x: bool) -> None: ...
def pack_uhyper(self, x: int) -> None: ...
def pack_hyper(self, x: int) -> None: ...
def pack_float(self, x: float) -> None: ...
def pack_double(self, x: float) -> None: ...
def pack_fstring(self, n: int, s: bytes) -> None: ...
def pack_fopaque(self, n: int, s: bytes) -> None: ...
def pack_string(self, s: bytes) -> None: ...
def pack_opaque(self, s: bytes) -> None: ...
def pack_bytes(self, s: bytes) -> None: ...
def pack_list(self, list: Sequence[_T], pack_item: Callable[[_T], object]) -> None: ...
def pack_farray(self, n: int, list: Sequence[_T], pack_item: Callable[[_T], object]) -> None: ...
def pack_array(self, list: Sequence[_T], pack_item: Callable[[_T], object]) -> None: ...
class Unpacker:
def __init__(self, data: bytes) -> None: ...
def reset(self, data: bytes) -> None: ...
def get_position(self) -> int: ...
def set_position(self, position: int) -> None: ...
def get_buffer(self) -> bytes: ...
def done(self) -> None: ...
def unpack_uint(self) -> int: ...
def unpack_int(self) -> int: ...
def unpack_enum(self) -> int: ...
def unpack_bool(self) -> bool: ...
def unpack_uhyper(self) -> int: ...
def unpack_hyper(self) -> int: ...
def unpack_float(self) -> float: ...
def unpack_double(self) -> float: ...
def unpack_fstring(self, n: int) -> bytes: ...
def unpack_fopaque(self, n: int) -> bytes: ...
def unpack_string(self) -> bytes: ...
def unpack_opaque(self) -> bytes: ...
def unpack_bytes(self) -> bytes: ...
def unpack_list(self, unpack_item: Callable[[], _T]) -> list[_T]: ...
def unpack_farray(self, n: int, unpack_item: Callable[[], _T]) -> list[_T]: ...
def unpack_array(self, unpack_item: Callable[[], _T]) -> list[_T]: ...
|