summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/_abcoll.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py
index de6e6f8..9bcaae9 100644
--- a/Lib/_abcoll.py
+++ b/Lib/_abcoll.py
@@ -382,7 +382,7 @@ class Mapping(metaclass=ABCMeta):
return set(self) == set(other)
def __ne__(self, other):
- return set(self) == set(other)
+ return set(self) != set(other)
class MappingView(metaclass=ABCMeta):