Author: raymond.hettinger
Date: Mon Feb  4 23:09:30 2008
New Revision: 60578

Modified:
   python/branches/py3k/Lib/_abcoll.py
Log:
Fix typo (thanks Nick).

Modified: python/branches/py3k/Lib/_abcoll.py
==============================================================================
--- python/branches/py3k/Lib/_abcoll.py (original)
+++ python/branches/py3k/Lib/_abcoll.py Mon Feb  4 23:09:30 2008
@@ -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):
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to