mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +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
|