PHP 8.2.30
Preview: misc.py Size: 971 B
//proc/self/root/opt/alt/python35/lib/python3.5/site-packages/pip/_vendor/distlib/_backport/misc.py

# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 The Python Software Foundation.
# See LICENSE.txt and CONTRIBUTORS.txt.
#
"""Backports for individual classes and functions."""

import os
import sys

__all__ = ['cache_from_source', 'callable', 'fsencode']


try:
    from imp import cache_from_source
except ImportError:
    def cache_from_source(py_file, debug=__debug__):
        ext = debug and 'c' or 'o'
        return py_file + ext


try:
    callable = callable
except NameError:
    from collections import Callable

    def callable(obj):
        return isinstance(obj, Callable)


try:
    fsencode = os.fsencode
except AttributeError:
    def fsencode(filename):
        if isinstance(filename, bytes):
            return filename
        elif isinstance(filename, str):
            return filename.encode(sys.getfilesystemencoding())
        else:
            raise TypeError("expect bytes or str, not %s" %
                            type(filename).__name__)

Directory Contents

Dirs: 1 × Files: 6

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:37:10
Edit Download
971 B lrw-r--r-- 2023-11-13 21:22:19
Edit Download
25.10 KB lrw-r--r-- 2023-11-13 21:22:19
Edit Download
2.56 KB lrw-r--r-- 2023-11-13 21:22:19
Edit Download
26.22 KB lrw-r--r-- 2023-11-13 21:22:19
Edit Download
90.46 KB lrw-r--r-- 2023-11-13 21:22:19
Edit Download
274 B lrw-r--r-- 2023-11-13 21:22:19
Edit Download

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