]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Missing return
authorRaymond Hettinger <python@rcn.com>
Thu, 31 Jan 2008 01:42:11 +0000 (01:42 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 31 Jan 2008 01:42:11 +0000 (01:42 +0000)
Lib/_abcoll.py

index 75a807252827ebd50233758c5b8e517292cc0003..89d41796b24d2da741a14e1835e14d2a596b0cf9 100644 (file)
@@ -293,6 +293,7 @@ class MutableSet(Set):
                 self.discard(value)
             else:
                 self.add(value)
+        return self
 
     def __isub__(self, it):
         for value in it: