diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-18 22:26:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-18 22:26:40 -0300 |
commit | a899ca140514e438fd4fb942859cbc03aff4427a (patch) | |
tree | c4718e137e94b7d21f625799c345698dff612a6f /game | |
parent | a0e7d68bd80888fcb5cacec31740ceae56f419d3 (diff) | |
download | client-a899ca140514e438fd4fb942859cbc03aff4427a.tar.gz client-a899ca140514e438fd4fb942859cbc03aff4427a.tar.bz2 client-a899ca140514e438fd4fb942859cbc03aff4427a.tar.xz client-a899ca140514e438fd4fb942859cbc03aff4427a.zip |
Remove certifi library
Diffstat (limited to 'game')
-rw-r--r-- | game/python-extra/certifi/__init__.py | 3 | ||||
-rw-r--r-- | game/python-extra/certifi/__main__.py | 2 | ||||
-rw-r--r-- | game/python-extra/certifi/core.py | 15 |
3 files changed, 0 insertions, 20 deletions
diff --git a/game/python-extra/certifi/__init__.py b/game/python-extra/certifi/__init__.py deleted file mode 100644 index 8e358e4..0000000 --- a/game/python-extra/certifi/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from .core import where - -__version__ = "2019.09.11" diff --git a/game/python-extra/certifi/__main__.py b/game/python-extra/certifi/__main__.py deleted file mode 100644 index 5f1da0d..0000000 --- a/game/python-extra/certifi/__main__.py +++ /dev/null @@ -1,2 +0,0 @@ -from certifi import where -print(where()) diff --git a/game/python-extra/certifi/core.py b/game/python-extra/certifi/core.py deleted file mode 100644 index 7271acf..0000000 --- a/game/python-extra/certifi/core.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- 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') |