diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-04 22:09:30 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-04 22:09:30 (GMT) |
commit | b34604233ad9e27c99975d8d3f77e633b2b3a866 (patch) | |
tree | 89e7ece1e8480c03865ae056457d2790b9a811e8 /Lib | |
parent | edf3b734c05b754f03e36c1eb69bfc7343b8a150 (diff) | |
download | cpython-b34604233ad9e27c99975d8d3f77e633b2b3a866.zip cpython-b34604233ad9e27c99975d8d3f77e633b2b3a866.tar.gz cpython-b34604233ad9e27c99975d8d3f77e633b2b3a866.tar.bz2 |
Fix typo (thanks Nick).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/_abcoll.py | 2 |
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): |