1
0
forked from VimPlug/jedi

A few renames for readability in the api/completion.py file

This commit is contained in:
Dave Halter
2019-12-20 17:40:00 +01:00
parent ebe9921208
commit 5bf6e7048b
5 changed files with 21 additions and 24 deletions

View File

@@ -83,7 +83,7 @@ def setup_readline(namespace_module=__main__, fuzzy=False):
logging.debug("Start REPL completion: " + repr(text))
interpreter = Interpreter(text, [namespace_module.__dict__])
completions = interpreter.completions(fuzzy=fuzzy)
completions = interpreter.complete(fuzzy=fuzzy)
logging.debug("REPL completions: %s", completions)
self.matches = [