/usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol
NameSizeModeActions
caches/-0755rm
__pycache__/-0755rm
adapter.py46080644editdlrm
cache.py7900644editdlrm
compat.py3800644editdlrm
controller.py130240644editdlrm
filewrapper.py25310644editdlrm
heuristics.py41410644editdlrm
serialize.py65360644editdlrm
wrapper.py4980644editdlrm
_cmd.py13200644editdlrm
__init__.py3020644editdlrm
Edit: /usr/lib/python3.6/site-packages/pip/_vendor/cachecontrol/wrapper.py (498B)
from .adapter import CacheControlAdapter from .cache import DictCache def CacheControl(sess, cache=None, cache_etags=True, serializer=None, heuristic=None): cache = cache or DictCache() adapter = CacheControlAdapter( cache, cache_etags=cache_etags, serializer=serializer, heuristic=heuristic, ) sess.mount('http://', adapter) sess.mount('https://', adapter) return sess