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
|
|
|
|
|
2022-01-09 00:12:38 +08:00
|
|
|
def str(arg: any) -> str:
|
|
|
|
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-27 21:57:08 +08:00
|
|
|
def range(a1: int, a2: int, a3: int) -> any:
|
2021-12-27 21:41:17 +08:00
|
|
|
pass
|
|
|
|
|
2022-01-18 23:37:48 +08:00
|
|
|
def __set__(obj: any, key: any, val: any, obj_str: str):
|
2022-01-13 21:56:44 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
def __get__(obj: any, key: any) -> any:
|
|
|
|
pass
|
|
|
|
|
2021-12-27 21:41:17 +08:00
|
|
|
|
|
|
|
class RangeObj(TinyObj):
|
|
|
|
def __next__() -> any:
|
|
|
|
pass
|
2022-01-09 23:37:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
class StringObj(TinyObj):
|
|
|
|
def __next__() -> any:
|
|
|
|
pass
|
2022-02-25 18:05:54 +08:00
|
|
|
|
|
|
|
class PikaObj(TinyObj):
|
|
|
|
pass
|