You need an _eq_ in Point. Otherwise, Python is comparing two objects by their addresses, and always coming up False.
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def __eq__(self, other):
if not isinstance(other, Point):
return False
return self.x == other.x and self.y == other.y