/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/compat.py (380B)
try: from urllib.parse import urljoin except ImportError: from urlparse import urljoin try: import cPickle as pickle except ImportError: import pickle from pip._vendor.urllib3.response import HTTPResponse from pip._vendor.urllib3.util import is_fp_closed # Replicate some six behaviour try: text_type = (unicode,) except NameError: text_type = (str,)