commit | 3b3ddb882885042c71b9cabdadbd4d47a71b83a9 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon May 18 15:56:38 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon May 18 15:56:38 2009 +0000 |
tree | ded759b1610bba3fa05772e459d1ca92a7894ab3 | |
parent | 1f54ed5e377927d524af977e6212b724476f6e4d [diff] [blame] |
Issue 6037: MutableSequence.__iadd__ should return self.
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index a355be9..d8cdc98 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py
@@ -557,5 +557,6 @@ def __iadd__(self, values): self.extend(values) + return self MutableSequence.register(list)