mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
20 lines
245 B
Python
20 lines
245 B
Python
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
|