1
0
forked from VimPlug/jedi

better support for get_in_function_call

This commit is contained in:
David Halter
2012-10-07 21:43:27 +02:00
parent 8c6f809a86
commit db315f44f4
3 changed files with 12 additions and 3 deletions

View File

@@ -976,8 +976,10 @@ class Array(Call):
Only used for dictionaries, automatically adds the tokens added by now
from the values to keys, because the parser works this way.
"""
self.type = Array.DICT
if self.type in (Array.LIST, Array.TUPLE):
return # these are basically code errors, just ignore
self.keys.append(self.values.pop())
self.type = Array.DICT
self.values.append([])
def get_only_subelement(self):