vote up 4 vote down star

I know about the __add__ method to override plus, but when I use that to override +=, I end up with one of two problems:

(1) if __add__ mutates self, then

z = x + y

will mutate x when I don't really want x to be mutated there.

(2) if __add__ returns a new object, then

tmp = z
z += x
z += y
tmp += w
return z

will return something without w since z and tmp point to different objects after z += x is executed.

I can make some sort of .append() method, but I'd prefer to overload += if it is possible.

flag

62% accept rate
2  
The programmers that RTFM are an endangered species. – ΤΖΩΤΖΙΟΥ Apr 8 at 22:21

1 Answer

vote up 15 vote down check

Yes. Just override the object's __iadd__ method, which takes the same parameters as add. You can find more information here.

link|flag
It's __iadd__ actually, not __addi__. – DNS Apr 8 at 3:10
+1: Quote the documentation :-) – S.Lott Apr 8 at 11:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.