PATH:
opt
/
alt
/
python36
/
lib
/
python3.6
/
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 )
[-] typing.py
[edit]
[+]
__pycache__
[-] compat.py
[edit]
[-] setuptools_build.py
[edit]
[-] subprocess.py
[edit]
[-] temp_dir.py
[edit]
[-] filesystem.py
[edit]
[-] entrypoints.py
[edit]
[-] __init__.py
[edit]
[-] glibc.py
[edit]
[-] wheel.py
[edit]
[-] parallel.py
[edit]
[-] encoding.py
[edit]
[+]
..
[-] virtualenv.py
[edit]
[-] appdirs.py
[edit]
[-] misc.py
[edit]
[-] hashes.py
[edit]
[-] packaging.py
[edit]
[-] compatibility_tags.py
[edit]
[-] filetypes.py
[edit]
[-] deprecation.py
[edit]
[-] distutils_args.py
[edit]
[-] unpacking.py
[edit]
[-] urls.py
[edit]
[-] datetime.py
[edit]
[-] pkg_resources.py
[edit]
[-] models.py
[edit]
[-] direct_url_helpers.py
[edit]
[-] logging.py
[edit]
[-] inject_securetransport.py
[edit]