diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-26 07:57:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-26 07:57:07 (GMT) |
commit | f4b7a02e932671c6e54e6b48340173cc859ab4c0 (patch) | |
tree | eaa9107bb2885a9ed40f9c697a31049826324dde /Lib/test/test_binop.py | |
parent | 155ceaa454ad9a623cade5ed326e6e1e70ce109d (diff) | |
download | cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.zip cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.tar.gz cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.tar.bz2 |
Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
returned NotImplemented. Removed incorrect implementations of __ne__().
Diffstat (limited to 'Lib/test/test_binop.py')
-rw-r--r-- | Lib/test/test_binop.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py index 8417916..9c4c18e 100644 --- a/Lib/test/test_binop.py +++ b/Lib/test/test_binop.py @@ -194,10 +194,6 @@ class Rat(object): return float(self) == other return NotImplemented - def __ne__(self, other): - """Compare two Rats for inequality.""" - return not self == other - class RatTestCase(unittest.TestCase): """Unit tests for Rat class and its support utilities.""" |