mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
15 lines
436 B
Python
15 lines
436 B
Python
|
def exit(retval: Any = ...) -> None:
|
||
|
raise SystemExit()
|
||
|
|
||
|
def print_exception(exc: BaseException) -> None: ...
|
||
|
|
||
|
path = ... # type: List[str]
|
||
|
argv = ... # type: List[str]
|
||
|
version = ... # type: str
|
||
|
version_info = ... # type: Tuple[int, int, int]
|
||
|
implementation = ... # type: Tuple[str, Tuple[int, int, int]]
|
||
|
platform = ... # type: str
|
||
|
byteorder = ... # type: str
|
||
|
maxsize = ... # type: int
|
||
|
modules = ... # type: Dict[str, Any]
|