summaryrefslogtreecommitdiffstats
path: root/Lib/_abcoll.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-04 22:09:30 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-02-04 22:09:30 (GMT)
commitb34604233ad9e27c99975d8d3f77e633b2b3a866 (patch)
tree89e7ece1e8480c03865ae056457d2790b9a811e8 /Lib/_abcoll.py
parentedf3b734c05b754f03e36c1eb69bfc7343b8a150 (diff)
downloadcpython-b34604233ad9e27c99975d8d3f77e633b2b3a866.zip
cpython-b34604233ad9e27c99975d8d3f77e633b2b3a866.tar.gz
cpython-b34604233ad9e27c99975d8d3f77e633b2b3a866.tar.bz2
Fix typo (thanks Nick).
Diffstat (limited to 'Lib/_abcoll.py')
-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):