]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.
authorRaymond Hettinger <python@rcn.com>
Wed, 1 Apr 2009 18:55:57 +0000 (18:55 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 1 Apr 2009 18:55:57 +0000 (18:55 +0000)
Lib/_abcoll.py
Lib/test/test_collections.py

index 942a72c0ce76cf25342cd96f88044a58c16687c8..a355be9a79b37b43bc011236e128870ad932369d 100644 (file)
@@ -286,10 +286,9 @@ class MutableSet(Set):
             self.add(value)
         return self
 
-    def __iand__(self, c):
-        for value in self:
-            if value not in c:
-                self.discard(value)
+    def __iand__(self, it):
+        for value in (self - it):
+            self.discard(value)
         return self
 
     def __ixor__(self, it):
index fe96117ffdd6abb53552b71edfaeef23fdbaad00..3db5f252424d21d411dc63ac68643922dbf4dc91 100644 (file)
@@ -311,6 +311,25 @@ class TestOneTrickPonyABCs(ABCTestCase):
             B.register(C)
             self.failUnless(issubclass(C, B))
 
+class WithSet(MutableSet):
+
+    def __init__(self, it=()):
+        self.data = set(it)
+
+    def __len__(self):
+        return len(self.data)
+
+    def __iter__(self):
+        return iter(self.data)
+
+    def __contains__(self, item):
+        return item in self.data
+
+    def add(self, item):
+        self.data.add(item)
+
+    def discard(self, item):
+        self.data.discard(item)
 
 class TestCollectionABCs(ABCTestCase):
 
@@ -347,6 +366,12 @@ class TestCollectionABCs(ABCTestCase):
         self.validate_abstract_methods(MutableSet, '__contains__', '__iter__', '__len__',
             'add', 'discard')
 
+    def test_issue_5647(self):
+        # MutableSet.__iand__ mutated the set during iteration
+        s = WithSet('abcd')
+        s &= WithSet('cdef')            # This used to fail
+        self.assertEqual(set(s), set('cd'))
+
     def test_issue_4920(self):
         # MutableSet.pop() method did not work
         class MySet(collections.MutableSet):