Martijn got it exactly right. If you want an int-rounder to round to the nearest even, then I would go with this:
def myRound(n):
answer = round(n)
if not answer%2:
return answer
if abs(answer+1-n) < abs(answer-1-n):
return answer + 1
else:
return answer - 1