From: Raymond Hettinger Date: Mon, 4 Feb 2008 22:09:30 +0000 (+0000) Subject: Fix typo (thanks Nick). X-Git-Tag: v3.0a3~111 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b34604233ad9e27c99975d8d3f77e633b2b3a866;p=thirdparty%2FPython%2Fcpython.git Fix typo (thanks Nick). --- diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index de6e6f8d1f2b..9bcaae928c1c 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):