commit | e973c61238807dcf4ccedc18a99db8f478c422c7 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Jan 31 01:42:11 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Jan 31 01:42:11 2008 +0000 |
tree | a97cc39931777eb10881ef7ca9ad0d6c32c655dc | |
parent | e67420d72e26d976af2c8cd8603f2dfe158b6d24 [diff] [blame] |
Missing return
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 @@ self.discard(value) else: self.add(value) + return self def __isub__(self, it): for value in it: