We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066aaa7 commit af1ba18Copy full SHA for af1ba18
py/list.go
@@ -207,7 +207,7 @@ func (a *List) M__add__(other Object) (Object, error) {
207
if b, ok := other.(*List); ok {
208
newList := NewListSized(len(a.Items) + len(b.Items))
209
copy(newList.Items, a.Items)
210
- copy(newList.Items[len(b.Items):], b.Items)
+ copy(newList.Items[len(a.Items):], b.Items)
211
return newList, nil
212
}
213
return NotImplemented, nil
0 commit comments