1
0
forked from VimPlug/jedi

Fix a small test error

This commit is contained in:
Dave Halter
2017-10-05 20:43:28 +02:00
parent 7019ca643e
commit 21531abd1e

View File

@@ -4,11 +4,11 @@ Tests of ``jedi.api.Interpreter``.
import pytest
import jedi
from jedi._compatibility import is_py33, is_py3
from jedi._compatibility import is_py33, py_version
from jedi.evaluate.compiled import mixed
if is_py3:
if py_version > 30:
def exec_(source, global_map):
exec(source, global_map)
else: