summaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
Diffstat (limited to 'game')
-rw-r--r--game/python-extra/certifi/__init__.py3
-rw-r--r--game/python-extra/certifi/__main__.py2
-rw-r--r--game/python-extra/certifi/core.py15
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')