PATH:
usr
/
lib
/
python3.8
/
site-packages
/
pip
/
_internal
/
utils
"""Filetype information. """ from pip._internal.utils.typing import MYPY_CHECK_RUNNING if MYPY_CHECK_RUNNING: from typing import Tuple WHEEL_EXTENSION = '.whl' BZ2_EXTENSIONS = ('.tar.bz2', '.tbz') # type: Tuple[str, ...] XZ_EXTENSIONS = ('.tar.xz', '.txz', '.tlz', '.tar.lz', '.tar.lzma') # type: Tuple[str, ...] ZIP_EXTENSIONS = ('.zip', WHEEL_EXTENSION) # type: Tuple[str, ...] TAR_EXTENSIONS = ('.tar.gz', '.tgz', '.tar') # type: Tuple[str, ...] ARCHIVE_EXTENSIONS = ( ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS )
[-] encoding.py
[edit]
[-] filesystem.py
[edit]
[-] marker_files.py
[edit]
[-] urls.py
[edit]
[-] packaging.py
[edit]
[-] __init__.py
[edit]
[-] appdirs.py
[edit]
[-] hashes.py
[edit]
[-] compat.py
[edit]
[-] subprocess.py
[edit]
[-] typing.py
[edit]
[-] temp_dir.py
[edit]
[-] logging.py
[edit]
[-] inject_securetransport.py
[edit]
[-] deprecation.py
[edit]
[-] setuptools_build.py
[edit]
[-] ui.py
[edit]
[-] unpacking.py
[edit]
[+]
__pycache__
[-] glibc.py
[edit]
[-] virtualenv.py
[edit]
[+]
..
[-] misc.py
[edit]
[-] models.py
[edit]
[-] filetypes.py
[edit]