X7ROOT File Manager
Current Path:
/opt/alt/python37/lib64/python3.7/site-packages/simplejson
opt
/
alt
/
python37
/
lib64
/
python3.7
/
site-packages
/
simplejson
/
ðŸ“
..
📄
__init__.py
(23.17 KB)
ðŸ“
__pycache__
📄
_speedups.cpython-37m-x86_64-linux-gnu.so
(56.88 KB)
📄
compat.py
(931 B)
📄
decoder.py
(14.24 KB)
📄
encoder.py
(26.67 KB)
📄
errors.py
(1.74 KB)
📄
ordered_dict.py
(2.88 KB)
📄
raw_json.py
(217 B)
📄
scanner.py
(2.9 KB)
ðŸ“
tests
📄
tool.py
(1.11 KB)
Editing: compat.py
"""Python 3 compatibility shims """ import sys if sys.version_info[0] < 3: PY3 = False def b(s): return s def u(s): return unicode(s, 'unicode_escape') import cStringIO as StringIO StringIO = BytesIO = StringIO.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 import codecs def b(s): return codecs.latin_1_encode(s)[0] def u(s): return s import io StringIO = io.StringIO BytesIO = io.BytesIO text_type = str binary_type = bytes string_types = (str,) integer_types = (int,) def unichr(s): return u(chr(s)) long_type = integer_types[-1]
Upload File
Create Folder