mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
39 lines
512 B
Python
39 lines
512 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
|