forked from VimPlug/jedi
fixed a very nasty problem with exponential growth in precedence for loops
This commit is contained in:
@@ -188,7 +188,7 @@ def calculate(evaluator, left_result, operator, right_result):
|
||||
for left in left_result:
|
||||
for right in right_result:
|
||||
result += _element_calculate(evaluator, left, operator, right)
|
||||
return result
|
||||
return list(set(result))
|
||||
|
||||
|
||||
def _factor_calculate(evaluator, operator, right):
|
||||
|
||||
Reference in New Issue
Block a user