1
0
forked from VimPlug/jedi

Small glitch with the change of return statements to loops in precedences.

This commit is contained in:
Dave Halter
2014-11-06 04:06:40 +01:00
parent d58046f38f
commit 56102e408e

View File

@@ -239,8 +239,9 @@ def calculate_children(evaluator, children):
if operator != 'and':
types = evaluator.eval_element(right)
# Otherwise continue, because of uncertainty.
types = calculate(evaluator, types, operator,
evaluator.eval_element(right))
else:
types = calculate(evaluator, types, operator,
evaluator.eval_element(right))
return types