1
0
forked from VimPlug/jedi

temporary very unfinished solution for the *args/**kwargs combination problem, if they are used in common with dynamic params. This doesn't solve the issue entirely, but it's at least a start and will probably solve all autocompletion issues. However, static analysis needs a little bit more than that.

This commit is contained in:
Dave Halter
2014-06-04 17:18:09 +02:00
parent 945888a535
commit acb4959a6a
4 changed files with 61 additions and 12 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ class NameFinder(object):
% (self._last_filter_name_scope, self.name_str))
analysis.add(self._evaluator, err_type, self.name_str, message)
debug.dbg('finder._names_to_types: %s, old: %s', names, types)
debug.dbg('finder._names_to_types: %s -> %s', names, types)
return self._resolve_descriptors(types)
def scopes(self, search_global=False):