2021-10-01 20:00:15 +08:00
|
|
|
from PikaObj import *
|
|
|
|
|
2022-05-25 15:42:25 +08:00
|
|
|
|
2021-11-17 09:59:56 +08:00
|
|
|
class MemChecker(TinyObj):
|
2022-05-25 15:42:25 +08:00
|
|
|
def max(self): ...
|
|
|
|
def now(self): ...
|
|
|
|
def getMax(self) -> float: ...
|
|
|
|
def getNow(self) -> float: ...
|
|
|
|
def resetMax(self): ...
|
2021-10-01 20:00:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
class SysObj(BaseObj):
|
2022-05-25 15:42:25 +08:00
|
|
|
def type(self, arg: any): ...
|
|
|
|
def remove(self, argPath: str): ...
|
|
|
|
def int(self, arg: any) -> int: ...
|
|
|
|
def float(self, arg: any) -> float: ...
|
|
|
|
def str(self, arg: any) -> str: ...
|
|
|
|
def iter(self, arg: any) -> any: ...
|
|
|
|
def range(self, a1: int, a2: int) -> any: ...
|
2022-06-11 14:56:51 +00:00
|
|
|
def print(self, *val): ...
|
2022-06-10 12:04:06 +08:00
|
|
|
def printNoEnd(self, val: any): ...
|
2022-05-25 15:42:25 +08:00
|
|
|
def __set__(self, obj: any, key: any, val: any, obj_str: str): ...
|
|
|
|
def __get__(self, obj: any, key: any) -> any: ...
|
2022-05-26 17:03:58 +08:00
|
|
|
def __slice__(self, obj: any, start: any, end: any, step: int) -> any: ...
|
2022-05-25 15:42:25 +08:00
|
|
|
def len(self, arg: any) -> int: ...
|
|
|
|
def list(self) -> any: ...
|
|
|
|
def dict(self) -> any: ...
|
|
|
|
def hex(self, val: int) -> str: ...
|
2022-05-25 15:53:39 +08:00
|
|
|
def ord(self, val: str) -> int: ...
|
|
|
|
def chr(self, val: int) -> str: ...
|
2022-05-26 15:46:34 +08:00
|
|
|
def bytes(self, val: any) -> bytes: ...
|
2022-06-14 03:20:17 +00:00
|
|
|
def cformat(self, fmt: str, *var) -> str: ...
|
2022-05-25 15:42:25 +08:00
|
|
|
|
2021-12-28 01:21:47 +08:00
|
|
|
|
|
|
|
class RangeObj(TinyObj):
|
2022-05-25 15:42:25 +08:00
|
|
|
def __next__(self) -> any: ...
|
2022-01-09 23:49:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class StringObj(TinyObj):
|
2022-05-25 15:42:25 +08:00
|
|
|
def __next__(self) -> any: ...
|
|
|
|
|
2022-02-25 18:05:54 +08:00
|
|
|
|
2022-05-25 15:42:25 +08:00
|
|
|
class PikaObj(TinyObj):
|
|
|
|
...
|