/usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol
NameSizeModeActions
caches/-0755rm
__pycache__/-0755rm
adapter.py48820644editdlrm
cache.py8050644editdlrm
compat.py6950644editdlrm
controller.py141490644editdlrm
filewrapper.py25330644editdlrm
heuristics.py40700644editdlrm
serialize.py70910644editdlrm
wrapper.py6900644editdlrm
_cmd.py12950644editdlrm
__init__.py3020644editdlrm
Edit: /usr/local/lib/python3.6/site-packages/pip/_vendor/cachecontrol/wrapper.py (690B)
from .adapter import CacheControlAdapter from .cache import DictCache def CacheControl( sess, cache=None, cache_etags=True, serializer=None, heuristic=None, controller_class=None, adapter_class=None, cacheable_methods=None, ): cache = DictCache() if cache is None else cache adapter_class = adapter_class or CacheControlAdapter adapter = adapter_class( cache, cache_etags=cache_etags, serializer=serializer, heuristic=heuristic, controller_class=controller_class, cacheable_methods=cacheable_methods, ) sess.mount("http://", adapter) sess.mount("https://", adapter) return sess