/usr/local/lib/python3.6/site-packages/pip/_vendor/requests
NameSizeModeActions
__pycache__/-0755rm
adapters.py215480644editdlrm
api.py64020644editdlrm
auth.py102070644editdlrm
certs.py4650644editdlrm
compat.py20450644editdlrm
cookies.py184300644editdlrm
exceptions.py32500644editdlrm
help.py39720644editdlrm
hooks.py7570644editdlrm
models.py349240644editdlrm
packages.py6950644editdlrm
sessions.py301680644editdlrm
status_codes.py41880644editdlrm
structures.py30050644editdlrm
utils.py313940644editdlrm
_internal_utils.py10960644editdlrm
__init__.py51130644editdlrm
__version__.py4410644editdlrm
Edit: /usr/local/lib/python3.6/site-packages/pip/_vendor/requests/certs.py (465B)
#!/usr/bin/env python # -*- coding: utf-8 -*- """ requests.certs ~~~~~~~~~~~~~~ This module returns the preferred default CA certificate bundle. There is only one — the one from the certifi package. If you are packaging Requests, e.g., for a Linux distribution or a managed environment, you can change the definition of where() to return a separately packaged CA bundle. """ from pip._vendor.certifi import where if __name__ == '__main__': print(where())