summaryrefslogtreecommitdiff
path: root/Lib/_pydecimal.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/_pydecimal.py')
-rw-r--r--Lib/_pydecimal.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/_pydecimal.py b/Lib/_pydecimal.py
index 659e370ca6..ca6c4bd98d 100644
--- a/Lib/_pydecimal.py
+++ b/Lib/_pydecimal.py
@@ -923,15 +923,6 @@ class Decimal(object):
return False
return self._cmp(other) == 0
- def __ne__(self, other, context=None):
- self, other = _convert_for_comparison(self, other, equality_op=True)
- if other is NotImplemented:
- return other
- if self._check_nans(other, context):
- return True
- return self._cmp(other) != 0
-
-
def __lt__(self, other, context=None):
self, other = _convert_for_comparison(self, other)
if other is NotImplemented: