tldr: refactoring

This commit is contained in:
Romain J 2019-12-16 18:12:10 +01:00
commit f42b2194cd
2881 changed files with 568359 additions and 388 deletions
venv/lib/python3.7/site-packages/pip/_vendor/certifi

View file

@ -0,0 +1,3 @@
from .core import where
__version__ = "2019.09.11"

View file

@ -0,0 +1,2 @@
from pip._vendor.certifi import where
print(where())

File diff suppressed because it is too large Load diff

View 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')