2021-10-01 20:00:15 +08:00
|
|
|
from PikaObj import *
|
|
|
|
|
2021-11-24 11:15:50 +08:00
|
|
|
|
2021-11-17 09:59:56 +08:00
|
|
|
class MemChecker(TinyObj):
|
2021-10-01 20:00:15 +08:00
|
|
|
def max():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def now():
|
|
|
|
pass
|
|
|
|
|
2021-12-28 01:21:47 +08:00
|
|
|
def getMax() -> float:
|
2021-11-24 11:15:50 +08:00
|
|
|
pass
|
|
|
|
|
2021-12-28 01:21:47 +08:00
|
|
|
def getNow() -> float:
|
2021-11-24 11:15:50 +08:00
|
|
|
pass
|
|
|
|
|
2021-10-01 20:00:15 +08:00
|
|
|
def resetMax():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class SysObj(BaseObj):
|
2021-11-24 11:15:50 +08:00
|
|
|
def type(arg: any):
|
2021-10-01 20:00:15 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
def remove(argPath: str):
|
|
|
|
pass
|
2021-11-24 11:15:50 +08:00
|
|
|
|
|
|
|
def int(arg: any) -> int:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def float(arg: any) -> float:
|
|
|
|
pass
|
|
|
|
|
2022-01-09 00:13:02 +08:00
|
|
|
def str(arg: any) -> str:
|
|
|
|
pass
|
|
|
|
|
2021-12-28 01:21:47 +08:00
|
|
|
def iter(arg: any) -> any:
|
|
|
|
pass
|
|
|
|
|
2022-03-30 01:22:25 +08:00
|
|
|
def range(a1: int, a2: int) -> any:
|
2021-12-28 01:21:47 +08:00
|
|
|
pass
|
2021-11-24 11:15:50 +08:00
|
|
|
|
2022-01-18 23:52:20 +08:00
|
|
|
def __set__(obj: any, key: any, val: any, obj_str: str):
|
2022-01-13 21:57:32 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
def __get__(obj: any, key: any) -> any:
|
|
|
|
pass
|
|
|
|
|
2021-12-28 01:21:47 +08:00
|
|
|
|
|
|
|
class RangeObj(TinyObj):
|
|
|
|
def __next__() -> any:
|
|
|
|
pass
|
2022-01-09 23:49:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class StringObj(TinyObj):
|
|
|
|
def __next__() -> any:
|
|
|
|
pass
|
2022-02-25 18:05:54 +08:00
|
|
|
|
|
|
|
class PikaObj(TinyObj):
|
|
|
|
pass
|