1
0
forked from VimPlug/jedi

Dict key that are not in dict should return all value types.

This commit is contained in:
Dave Halter
2014-10-27 00:19:31 +01:00
parent e4124fcf9a
commit 8df8749f22
3 changed files with 26 additions and 14 deletions

View File

@@ -441,7 +441,7 @@ class Scope(Simple, DocstringMixin):
:param start_pos: The position (line and column) of the scope.
:type start_pos: tuple(int, int)
"""
__slots__ = ('imports', '_doc_token', 'asserts', 'names_dict',
__slots__ = ('imports', '_doc_token', 'asserts', 'names_dict',
'is_generator')
def __init__(self, children):