Commit b3460423 authored by Raymond Hettinger's avatar Raymond Hettinger

Fix typo (thanks Nick).

parent edf3b734
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment