PHP 8.2.30
Preview: compat.py Size: 780 B
/proc/self/root/proc/self/root/opt/alt/python36/lib/python3.6/site-packages/pip/_vendor/pep517/compat.py

"""Python 2/3 compatibility"""
import json
import sys


# Handle reading and writing JSON in UTF-8, on Python 3 and 2.

if sys.version_info[0] >= 3:
    # Python 3
    def write_json(obj, path, **kwargs):
        with open(path, 'w', encoding='utf-8') as f:
            json.dump(obj, f, **kwargs)

    def read_json(path):
        with open(path, 'r', encoding='utf-8') as f:
            return json.load(f)

else:
    # Python 2
    def write_json(obj, path, **kwargs):
        with open(path, 'wb') as f:
            json.dump(obj, f, encoding='utf-8', **kwargs)

    def read_json(path):
        with open(path, 'rb') as f:
            return json.load(f)


# FileNotFoundError

try:
    FileNotFoundError = FileNotFoundError
except NameError:
    FileNotFoundError = IOError

Directory Contents

Dirs: 1 × Files: 10

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:36:51
Edit Download
3.26 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
5.82 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
4.00 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
780 B lrw-r--r-- 2023-11-13 21:24:38
Edit Download
1.10 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
5.90 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
2.41 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
10.53 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
8.24 KB lrw-r--r-- 2023-11-13 21:24:38
Edit Download
84 B lrw-r--r-- 2023-11-13 21:24:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).