Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class where I want to override the __eq__() operator. It seems to make sense that I should override the __ne__() operator as well, but does it make sense to implemented __ne__ based on __eq__ as such?

class A:

def __eq__(self, other):
    return self.value == other.value

def __ne__(self, other):
    return not self.__eq__(other)

Or is there something that I'm missing with the way python uses these operators that makes this not a good idea.

share|improve this question

2 Answers

up vote 14 down vote accepted

Yes, that's perfectly fine. In fact, the documentation urges you to define __ne__ when you define __eq__:

There are no implied relationships among the comparison operators. The truth of x==y does not imply that x!=y is false. Accordingly, when defining __eq__(), one should also define __ne__() so that the operators will behave as expected.

In a lot of cases (such as this one), it will be as simple as negating the result of __eq__, but not always.

share|improve this answer
I would suggest writing it as return self.value != other.value though. it's not any less readable in this instance, and it avoids a method call, making it very slightly more efficient. – kindall Dec 4 '10 at 16:36
Well the self.value != other.value. The real implementation is more complex. – Falmarri Dec 4 '10 at 20:47

If all of __eq__, __ne__, __lt__, __ge__, __le__, and __gt__ make sense for the class, then just implement __cmp__ instead. Otherwise, do as you're doing, because of the bit Daniel DiPaolo said (while I was testing it instead of looking it up ;) )

share|improve this answer
3  
The __cmp__() special method is no longer supported in Python 3.x so you ought to get used to using the rich comparison operators. – Don O'Donnell Dec 4 '10 at 7:08
1  
D: Seems like everything they've taken out is something I liked... – Karl Knechtel Dec 4 '10 at 7:17
2  
Or alternatively if you're in Python 2.7 or 3.x, the functools.total_ordering decorator is quite handy as well. – Adam Parkin Jul 11 '12 at 16:04
Thanks for the heads-up. I've come to realize many things along those lines in the last year and a half, though. ;) – Karl Knechtel Jul 12 '12 at 10:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.