Submit
Path:
~
/
/
lib
/
python3.8
/
site-packages
/
pip
/
_internal
/
utils
/
__pycache__
/
File Content:
typing.cpython-38.pyc
U ��.ee � @ s d Z dZdS )aB For neatly implementing static typing in pip. `mypy` - the static type analysis tool we use - uses the `typing` module, which provides core functionality fundamental to mypy's functioning. Generally, `typing` would be imported at runtime and used in that fashion - it acts as a no-op at runtime and does not have any run-time overhead by design. As it turns out, `typing` is not vendorable - it uses separate sources for Python 2/Python 3. Thus, this codebase can not expect it to be present. To work around this, mypy allows the typing import to be behind a False-y optional to prevent it from running at runtime and type-comments can be used to remove the need for the types to be accessible directly during runtime. This module provides the False-y guard in a nicely named fashion so that a curious maintainer can reach here to read this. In pip, all static-typing related imports should be guarded as follows: from pip._internal.utils.typing import MYPY_CHECK_RUNNING if MYPY_CHECK_RUNNING: from typing import ... Ref: https://github.com/python/mypy/issues/3216 FN)�__doc__ZMYPY_CHECK_RUNNING� r r �>/usr/lib/python3.8/site-packages/pip/_internal/utils/typing.py�<module> s
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
__init__.cpython-38.opt-1.pyc
155 bytes
0644
__init__.cpython-38.pyc
155 bytes
0644
appdirs.cpython-38.opt-1.pyc
8043 bytes
0644
appdirs.cpython-38.pyc
8043 bytes
0644
compat.cpython-38.opt-1.pyc
6839 bytes
0644
compat.cpython-38.pyc
6839 bytes
0644
deprecation.cpython-38.opt-1.pyc
2826 bytes
0644
deprecation.cpython-38.pyc
2826 bytes
0644
encoding.cpython-38.opt-1.pyc
1247 bytes
0644
encoding.cpython-38.pyc
1247 bytes
0644
filesystem.cpython-38.opt-1.pyc
2773 bytes
0644
filesystem.cpython-38.pyc
2773 bytes
0644
filetypes.cpython-38.opt-1.pyc
556 bytes
0644
filetypes.cpython-38.pyc
556 bytes
0644
glibc.cpython-38.opt-1.pyc
2257 bytes
0644
glibc.cpython-38.pyc
2257 bytes
0644
hashes.cpython-38.opt-1.pyc
4144 bytes
0644
hashes.cpython-38.pyc
4144 bytes
0644
inject_securetransport.cpython-38.opt-1.pyc
932 bytes
0644
inject_securetransport.cpython-38.pyc
932 bytes
0644
logging.cpython-38.opt-1.pyc
9159 bytes
0644
logging.cpython-38.pyc
9159 bytes
0644
marker_files.cpython-38.opt-1.pyc
928 bytes
0644
marker_files.cpython-38.pyc
928 bytes
0644
misc.cpython-38.opt-1.pyc
23382 bytes
0644
misc.cpython-38.pyc
23382 bytes
0644
models.cpython-38.opt-1.pyc
1924 bytes
0644
models.cpython-38.pyc
1924 bytes
0644
packaging.cpython-38.opt-1.pyc
2608 bytes
0644
packaging.cpython-38.pyc
2608 bytes
0644
setuptools_build.cpython-38.opt-1.pyc
1258 bytes
0644
setuptools_build.cpython-38.pyc
1258 bytes
0644
subprocess.cpython-38.opt-1.pyc
5598 bytes
0644
subprocess.cpython-38.pyc
5598 bytes
0644
temp_dir.cpython-38.opt-1.pyc
4853 bytes
0644
temp_dir.cpython-38.pyc
4943 bytes
0644
typing.cpython-38.opt-1.pyc
1285 bytes
0644
typing.cpython-38.pyc
1285 bytes
0644
ui.cpython-38.opt-1.pyc
11755 bytes
0644
ui.cpython-38.pyc
11810 bytes
0644
unpacking.cpython-38.opt-1.pyc
6189 bytes
0644
unpacking.cpython-38.pyc
6189 bytes
0644
urls.cpython-38.opt-1.pyc
1350 bytes
0644
urls.cpython-38.pyc
1465 bytes
0644
virtualenv.cpython-38.opt-1.pyc
878 bytes
0644
virtualenv.cpython-38.pyc
878 bytes
0644
N4ST4R_ID | Naxtarrr