PikaStdLib.pyi 393 B

1234567891011121314151617181920212223
  1. from PikaObj import *
  2. class MemChecker:
  3. def max(self): ...
  4. def now(self): ...
  5. @PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
  6. def getMax(self) -> float: ...
  7. @PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
  8. def getNow(self) -> float: ...
  9. @PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
  10. def resetMax(self): ...
  11. class REPL:
  12. def setEcho(self, echo: bool): ...
  13. class SysObj:
  14. pass