Switch to python3
This commit is contained in:
parent
531041e89a
commit
9ba4b6a91a
5286 changed files with 677347 additions and 576888 deletions
1
Shared/lib/python3.4/site-packages/certifi/__init__.py
Normal file
1
Shared/lib/python3.4/site-packages/certifi/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
from .core import where
|
||||
2
Shared/lib/python3.4/site-packages/certifi/__main__.py
Normal file
2
Shared/lib/python3.4/site-packages/certifi/__main__.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
from certifi import where
|
||||
print(where())
|
||||
5134
Shared/lib/python3.4/site-packages/certifi/cacert.pem
Normal file
5134
Shared/lib/python3.4/site-packages/certifi/cacert.pem
Normal file
File diff suppressed because it is too large
Load diff
19
Shared/lib/python3.4/site-packages/certifi/core.py
Normal file
19
Shared/lib/python3.4/site-packages/certifi/core.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
certifi.py
|
||||
~~~~~~~~~~
|
||||
|
||||
This module returns the installation location of cacert.pem.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
def where():
|
||||
f = os.path.split(__file__)[0]
|
||||
|
||||
return os.path.join(f, 'cacert.pem')
|
||||
|
||||
if __name__ == '__main__':
|
||||
print(where())
|
||||
Loading…
Add table
Add a link
Reference in a new issue