1
0
forked from VimPlug/jedi

Fix py__getitem__ on Array.

This commit is contained in:
Dave Halter
2015-12-05 02:48:20 +01:00
parent db060c70c9
commit d65684a40b
4 changed files with 41 additions and 21 deletions
+1 -1
View File
@@ -355,7 +355,7 @@ class Evaluator(object):
new_types = set()
if trailer_op == '[':
for trailer_typ in self.eval_element(node):
for trailer_typ in iterable.create_index_types(self, node):
new_types |= iterable.py__getitem__(self, types, trailer_typ, trailer_op)
else:
for typ in types: