Fix typo (thanks Nick).
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 @@
         return set(self) == set(other)
 
     def __ne__(self, other):
-        return set(self) == set(other)
+        return set(self) != set(other)
 
 class MappingView(metaclass=ABCMeta):