summaryrefslogtreecommitdiff
path: root/game/python-extra/certifi/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'game/python-extra/certifi/core.py')
-rw-r--r--game/python-extra/certifi/core.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/game/python-extra/certifi/core.py b/game/python-extra/certifi/core.py
new file mode 100644
index 0000000..7271acf
--- /dev/null
+++ b/game/python-extra/certifi/core.py
@@ -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')