1
0
forked from VimPlug/jedi

significant speedup due to compiled caching

This commit is contained in:
Dave Halter
2014-04-13 16:31:38 +02:00
parent edeebd0bb9
commit 4bc55be103
6 changed files with 25 additions and 17 deletions

View File

@@ -16,7 +16,7 @@ def test_simple():
def test_fake_loading():
assert isinstance(compiled.create(next), Function)
assert isinstance(compiled.create(Evaluator(), next), Function)
string = compiled.builtin.get_subscope_by_name('str')
from_name = compiled._create_from_name(
@@ -28,7 +28,7 @@ def test_fake_loading():
def test_fake_docstr():
assert compiled.create(next).raw_doc == next.__doc__
assert compiled.create(Evaluator(), next).raw_doc == next.__doc__
def test_parse_function_doc_illegal_docstr():