tldr: refactoring
This commit is contained in:
parent
ba1122c07b
commit
f42b2194cd
2881 changed files with 568359 additions and 388 deletions
venv/lib/python3.7/site-packages/pip/_vendor/certifi
|
@ -0,0 +1,3 @@
|
|||
from .core import where
|
||||
|
||||
__version__ = "2019.09.11"
|
|
@ -0,0 +1,2 @@
|
|||
from pip._vendor.certifi import where
|
||||
print(where())
|
4558
venv/lib/python3.7/site-packages/pip/_vendor/certifi/cacert.pem
Normal file
4558
venv/lib/python3.7/site-packages/pip/_vendor/certifi/cacert.pem
Normal file
File diff suppressed because it is too large
Load diff
15
venv/lib/python3.7/site-packages/pip/_vendor/certifi/core.py
Normal file
15
venv/lib/python3.7/site-packages/pip/_vendor/certifi/core.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
certifi.py
|
||||
~~~~~~~~~~
|
||||
|
||||
This module returns the installation location of cacert.pem.
|
||||
"""
|
||||
import os
|
||||
|
||||
|
||||
def where():
|
||||
f = os.path.dirname(__file__)
|
||||
|
||||
return os.path.join(f, 'cacert.pem')
|
Loading…
Add table
Add a link
Reference in a new issue