Including the venv
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
from .core import where
|
||||
|
||||
__version__ = "2019.06.16"
|
@@ -0,0 +1,2 @@
|
||||
from pip._vendor.certifi import where
|
||||
print(where())
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
4618
lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem
Normal file
4618
lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem
Normal file
File diff suppressed because it is too large
Load Diff
15
lib/python3.8/site-packages/pip/_vendor/certifi/core.py
Normal file
15
lib/python3.8/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')
|
Reference in New Issue
Block a user