10 lines
173 B
Python
Raw Normal View History

2022-06-02 12:07:24 +08:00
import imp
from PikaObj import *
2022-06-02 14:23:55 +08:00
import json
2022-06-02 12:07:24 +08:00
class cJSON(TinyObj):
def __init__(self): ...
2022-06-02 14:23:55 +08:00
def print(self) -> str: ...
2022-06-02 16:34:30 +08:00
def parse(self, value: str) -> any: ...