You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/mocks/uio.py

20 lines
245 B

def open(name, mode='r', **kwargs):
pass
class FileIO:
pass
class TextIOWrapper:
pass
class StringIO:
def __init__(string):
pass
class BytesIO:
def __init__(string):
pass
def getvalue():
pass