1
0
forked from VimPlug/jedi

Make it possible to debug the REPL.

This commit is contained in:
Dave Halter
2016-08-02 23:07:47 +02:00
parent 05ad8c6608
commit 7c5e75f31b
2 changed files with 18 additions and 1 deletions

View File

@@ -156,4 +156,5 @@ class TestInterpreterAPI(TestCase):
lambd = lambda x: 3
self.check_interpreter_complete('foo(bar', locals(), ['bar'])
self.check_interpreter_complete('lambd(x', locals(), ['x'])
# TODO we're not yet using the Python3.5 inspect.signature, yet.
assert not jedi.Interpreter('lambd(x', [locals()]).completions()