1
0
forked from VimPlug/jedi

Some python 2.7 (and 3.3) compatibility improvements.

This commit is contained in:
Dave Halter
2016-07-03 02:54:21 +02:00
parent 609965d07c
commit 9245181a8c
6 changed files with 21 additions and 18 deletions
+1
View File
@@ -13,6 +13,7 @@ except ImportError:
is_py3 = sys.version_info[0] >= 3
is_py33 = is_py3 and sys.version_info.minor >= 3
is_py34 = is_py3 and sys.version_info.minor >= 4
is_py35 = is_py3 and sys.version_info.minor >= 5
is_py26 = not is_py3 and sys.version_info[1] < 7