summaryrefslogtreecommitdiff
path: root/Lib/_abcoll.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-31 01:42:11 +0000
committerRaymond Hettinger <python@rcn.com>2008-01-31 01:42:11 +0000
commite973c61238807dcf4ccedc18a99db8f478c422c7 (patch)
treea97cc39931777eb10881ef7ca9ad0d6c32c655dc /Lib/_abcoll.py
parente67420d72e26d976af2c8cd8603f2dfe158b6d24 (diff)
downloadcpython-git-e973c61238807dcf4ccedc18a99db8f478c422c7.tar.gz
Missing return
Diffstat (limited to 'Lib/_abcoll.py')
-rw-r--r--Lib/_abcoll.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py
index 75a8072528..89d41796b2 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: