def __eq__(self, other):
    return isinstance(other, self.__class__) and self.operator == other.operator and \
            self.op1 == other.op1 and self.op2 == other.op2