mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
Oops! 2.6's Rational.__ne__ didn't work.
This commit is contained in:
parent
b01aa430d5
commit
27d339446a
2 changed files with 6 additions and 1 deletions
|
@ -174,7 +174,10 @@ class Complex(Number):
|
|||
"""self == other"""
|
||||
raise NotImplementedError
|
||||
|
||||
# __ne__ is inherited from object and negates whatever __eq__ does.
|
||||
def __ne__(self, other):
|
||||
"""self != other"""
|
||||
# The default __ne__ doesn't negate __eq__ until 3.0.
|
||||
return not (self == other)
|
||||
|
||||
Complex.register(complex)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue