PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib/python3.11/site-packages/simplejson
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 _speedups.cpython-311-x86_64-linux-gnu.so
↓
X
📄 compat.py
↓
X
📄 decoder.py
↓
X
📄 encoder.py
↓
X
📄 errors.py
↓
X
📄 ordered_dict.py
↓
X
📄 raw_json.py
↓
X
📄 scanner.py
↓
X
📁 tests/
X
📄 tool.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: compat.py
"""Python 3 compatibility shims """ import sys if sys.version_info[0] < 3: PY3 = False def b(s): return s try: from cStringIO import StringIO except ImportError: from StringIO import StringIO BytesIO = StringIO text_type = unicode binary_type = str string_types = (basestring,) integer_types = (int, long) unichr = unichr reload_module = reload else: PY3 = True if sys.version_info[:2] >= (3, 4): from importlib import reload as reload_module else: from imp import reload as reload_module def b(s): return bytes(s, 'latin1') from io import StringIO, BytesIO text_type = str binary_type = bytes string_types = (str,) integer_types = (int,) unichr = chr long_type = integer_types[-1]
SIMPAN PERUBAHAN