1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00
trezor-firmware/mocks/ustruct.py
2017-06-07 19:06:26 +02:00

15 lines
214 B
Python

def calcsize(fmt):
return 0
def pack(fmt, *args):
return 0
def pack_info(fmt, buffer, offset, *args):
return 0
def unpack(fmt, data):
return 0
def unpack_from(fmt, data, offset=0):
return 0