mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
35 lines
420 B
Python
35 lines
420 B
Python
from PikaObj import *
|
|
|
|
|
|
class MemChecker(TinyObj):
|
|
def max():
|
|
pass
|
|
|
|
def now():
|
|
pass
|
|
|
|
def getMax()->float:
|
|
pass
|
|
|
|
def getNow()->float:
|
|
pass
|
|
|
|
def resetMax():
|
|
pass
|
|
|
|
|
|
class SysObj(BaseObj):
|
|
def type(arg: any):
|
|
pass
|
|
|
|
def remove(argPath: str):
|
|
pass
|
|
|
|
def int(arg: any) -> int:
|
|
pass
|
|
|
|
def float(arg: any) -> float:
|
|
pass
|
|
|
|
|