summaryrefslogtreecommitdiffstats
path: root/third_party/python/pyasn1/pyasn1/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/pyasn1/pyasn1/__init__.py')
-rw-r--r--third_party/python/pyasn1/pyasn1/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/python/pyasn1/pyasn1/__init__.py b/third_party/python/pyasn1/pyasn1/__init__.py
new file mode 100644
index 0000000000..5a56a707c8
--- /dev/null
+++ b/third_party/python/pyasn1/pyasn1/__init__.py
@@ -0,0 +1,7 @@
+import sys
+
+# https://www.python.org/dev/peps/pep-0396/
+__version__ = '0.4.8'
+
+if sys.version_info[:2] < (2, 4):
+ raise RuntimeError('PyASN1 requires Python 2.4 or later')