summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-31 01:42:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-31 01:42:11 (GMT)
commite973c61238807dcf4ccedc18a99db8f478c422c7 (patch)
treea97cc39931777eb10881ef7ca9ad0d6c32c655dc
parente67420d72e26d976af2c8cd8603f2dfe158b6d24 (diff)
downloadcpython-e973c61238807dcf4ccedc18a99db8f478c422c7.zip
cpython-e973c61238807dcf4ccedc18a99db8f478c422c7.tar.gz
cpython-e973c61238807dcf4ccedc18a99db8f478c422c7.tar.bz2
Missing return
-rw-r--r--Lib/_abcoll.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py
index 75a8072..89d4179 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: