From: Raymond Hettinger Date: Thu, 31 Jan 2008 01:42:11 +0000 (+0000) Subject: Missing return X-Git-Tag: v2.6a1~333 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e973c61238807dcf4ccedc18a99db8f478c422c7;p=thirdparty%2FPython%2Fcpython.git Missing return --- diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index 75a807252827..89d41796b24d 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py @@ -293,6 +293,7 @@ class MutableSet(Set): self.discard(value) else: self.add(value) + return self def __isub__(self, it): for value in it: