mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
17 lines
458 B
Python
17 lines
458 B
Python
from typing import *
|
|
|
|
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]
|