/usr/lib/python3.6/site-packages/pip/_vendor/requests
NameSizeModeActions
__pycache__/-0755rm
adapters.py210160644editdlrm
api.py62370644editdlrm
auth.py97280644editdlrm
certs.py4650644editdlrm
compat.py16260644editdlrm
cookies.py182080644editdlrm
exceptions.py31150644editdlrm
help.py36670644editdlrm
hooks.py7670644editdlrm
models.py340510644editdlrm
packages.py6950644editdlrm
sessions.py286890644editdlrm
status_codes.py33230644editdlrm
structures.py30120644editdlrm
utils.py276950644editdlrm
_internal_utils.py10960644editdlrm
__init__.py35750644editdlrm
__version__.py4360644editdlrm
Edit: /usr/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())