diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-31 01:42:11 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-31 01:42:11 +0000 |
commit | e973c61238807dcf4ccedc18a99db8f478c422c7 (patch) | |
tree | a97cc39931777eb10881ef7ca9ad0d6c32c655dc /Lib/_abcoll.py | |
parent | e67420d72e26d976af2c8cd8603f2dfe158b6d24 (diff) | |
download | cpython-git-e973c61238807dcf4ccedc18a99db8f478c422c7.tar.gz |
Missing return
Diffstat (limited to 'Lib/_abcoll.py')
-rw-r--r-- | Lib/_abcoll.py | 1 |
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: |