Commit c4808363 authored by Robert Bradshaw's avatar Robert Bradshaw

more function overloading

parent d478de19
......@@ -2418,8 +2418,9 @@ class SimpleCallNode(CallNode):
else:
score[0] += 1
else:
continue
possibilities.append((score, entry)) # so we can sort it
break
else:
possibilities.append((score, entry)) # so we can sort it
if len(possibilities):
possibilities.sort()
if len(possibilities) > 1 and possibilities[0][0] == possibilities[1][0]:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment