summaryrefslogtreecommitdiffstats
path: root/Lib/_collections_abc.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/_collections_abc.py')
-rw-r--r--Lib/_collections_abc.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py
index 294a7b1..33b59ab 100644
--- a/Lib/_collections_abc.py
+++ b/Lib/_collections_abc.py
@@ -224,9 +224,6 @@ class Set(Sized, Iterable, Container):
return NotImplemented
return len(self) == len(other) and self.__le__(other)
- def __ne__(self, other):
- return not (self == other)
-
@classmethod
def _from_iterable(cls, it):
'''Construct an instance of the class from any iterable input.
@@ -451,9 +448,6 @@ class Mapping(Sized, Iterable, Container):
return NotImplemented
return dict(self.items()) == dict(other.items())
- def __ne__(self, other):
- return not (self == other)
-
Mapping.register(mappingproxy)