mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 01:30:19 +00:00
33c174491f
* remove support for HF12 and below * remove MLSAG support * clean up monero cryptography naming * get rid of "optional first argument" pattern, in favor of mandatory argument that is allowed to be None (and fix several bugs related to this feature) Co-authored-by: grdddj <jiri.musil06@seznam.cz> Co-authored-by: Martin Milata <martin@martinmilata.cz> Co-authored-by: matejcik <ja@matejcik.cz>
11 lines
257 B
Python
11 lines
257 B
Python
from typing import TypeVar
|
|
|
|
C = TypeVar("C", bound=int)
|
|
|
|
def const(c: C) -> C: ...
|
|
def mem_info(verbose: bool | int | None = None) -> None: ...
|
|
def mem_current() -> int: ...
|
|
def mem_total() -> int: ...
|
|
def mem_peak() -> int: ...
|
|
def stack_use() -> int: ...
|