pikapython/package/struct/_struct.pyi

3 lines
97 B
Python
Raw Normal View History

2023-08-17 19:51:00 +08:00
def pack(fmt: str, *vars) -> bytes: ...
2023-08-17 21:55:23 +08:00
def unpack(fmt: str, data: any, offset: int) -> any: ...