1
0
forked from VimPlug/jedi

Eliminate is_py3 usages

This commit is contained in:
Dave Halter
2017-12-28 01:55:39 +01:00
parent 6b6795c40c
commit d1d4986667
6 changed files with 11 additions and 14 deletions
-1
View File
@@ -18,7 +18,6 @@ except ImportError:
is_py3 = sys.version_info[0] >= 3
is_py33 = is_py3 and sys.version_info[1] >= 3
is_py34 = is_py3 and sys.version_info[1] >= 4
is_py35 = is_py3 and sys.version_info[1] >= 5
is_py26 = not is_py3 and sys.version_info[1] < 7
py_version = int(str(sys.version_info[0]) + str(sys.version_info[1]))