mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
24 lines
393 B
Python
24 lines
393 B
Python
from PikaObj import *
|
|
|
|
|
|
class MemChecker:
|
|
def max(self): ...
|
|
def now(self): ...
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
|
def getMax(self) -> float: ...
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
|
def getNow(self) -> float: ...
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
|
def resetMax(self): ...
|
|
|
|
|
|
class REPL:
|
|
def setEcho(self, echo: bool): ...
|
|
|
|
|
|
class SysObj:
|
|
pass
|