mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
50 lines
683 B
Python
50 lines
683 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
|
|
|
|
def iter(arg: any) -> any:
|
|
pass
|
|
|
|
def next(arg: any) -> any:
|
|
pass
|
|
|
|
def range(a1: int, a2: int, a3: int) -> any:
|
|
pass
|
|
|
|
|
|
class RangeObj(TinyObj):
|
|
def __iter__() -> any:
|
|
pass
|
|
|
|
def __next__() -> any:
|
|
pass
|