2021-10-01 00:21:50 +08:00
|
|
|
from PikaObj import *
|
|
|
|
|
2021-11-17 10:09:52 +08:00
|
|
|
|
2021-11-20 09:40:50 +08:00
|
|
|
class MemChecker(TinyObj):
|
2021-10-01 00:21:50 +08:00
|
|
|
def max():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def now():
|
|
|
|
pass
|
|
|
|
|
2021-12-24 22:44:56 +08:00
|
|
|
def getMax() -> float:
|
2021-11-20 09:43:13 +08:00
|
|
|
pass
|
|
|
|
|
2021-12-24 22:44:56 +08:00
|
|
|
def getNow() -> float:
|
2021-11-20 09:43:13 +08:00
|
|
|
pass
|
|
|
|
|
2021-10-01 00:21:50 +08:00
|
|
|
def resetMax():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class SysObj(BaseObj):
|
2021-11-20 09:33:38 +08:00
|
|
|
def type(arg: any):
|
2021-10-01 00:21:50 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
def remove(argPath: str):
|
|
|
|
pass
|
2021-11-17 10:09:52 +08:00
|
|
|
|
2021-11-20 09:28:21 +08:00
|
|
|
def int(arg: any) -> int:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def float(arg: any) -> float:
|
|
|
|
pass
|
|
|
|
|
2021-12-24 22:44:56 +08:00
|
|
|
def iter(arg: any) -> any:
|
|
|
|
pass
|
2021-11-17 10:09:52 +08:00
|
|
|
|
2021-12-24 22:44:56 +08:00
|
|
|
def next(arg: any) -> any:
|
|
|
|
pass
|
2021-12-27 21:41:17 +08:00
|
|
|
|
|
|
|
def range(a1, a2, a3, a4) -> any:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class RangeObj(TinyObj):
|
|
|
|
def __iter__() -> any:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __next__() -> any:
|
|
|
|
pass
|