commit | b34604233ad9e27c99975d8d3f77e633b2b3a866 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Feb 04 22:09:30 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Feb 04 22:09:30 2008 +0000 |
tree | 89e7ece1e8480c03865ae056457d2790b9a811e8 | |
parent | edf3b734c05b754f03e36c1eb69bfc7343b8a150 [diff] [blame] |
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):