2006-10-07 | paulb | file changeset files shortlog | Improved argument mismatch error. |
paulb@58 | 1 | a = [1,2,3] |
paulb@58 | 2 | b = [4,5] |
paul@2 | 3 | a += b |
paul@2 | 4 | a.b += c |
paul@2 | 5 | a.b().c += d |
paulb@6 | 6 | a[b:c] += d |
paulb@6 | 7 | a.b[c:] += d |
paulb@10 | 8 | a[b] += c |
paulb@10 | 9 | a[b,c] += d |