summaryrefslogtreecommitdiff
path: root/pyximport/pyximport.py
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2017-05-20 20:46:03 +0200
committerJakub Wilk <jwilk@jwilk.net>2017-05-20 20:50:10 +0200
commit5ddf50d2546a016c93f38d671924e1074681e901 (patch)
tree47507467bd6fc5aaef6bf5f40b91557436e8ab88 /pyximport/pyximport.py
parentc4ba71f488535cab6ea78c3e56e0a977d9a0f853 (diff)
downloadcython-5ddf50d2546a016c93f38d671924e1074681e901.tar.gz
pyximport: remove obsolete version check
The file is syntactically correct only in Python >= 2.6, so the version check would never be run.
Diffstat (limited to 'pyximport/pyximport.py')
-rw-r--r--pyximport/pyximport.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pyximport/pyximport.py b/pyximport/pyximport.py
index 6c25c3c13..f39e00795 100644
--- a/pyximport/pyximport.py
+++ b/pyximport/pyximport.py
@@ -55,8 +55,6 @@ from zipimport import zipimporter, ZipImportError
mod_name = "pyximport"
-assert sys.hexversion >= 0x2030000, "need Python 2.3 or later"
-
PYX_EXT = ".pyx"
PYXDEP_EXT = ".pyxdep"
PYXBLD_EXT = ".pyxbld"