up vote 9 down vote favorite
share [g+] share [fb]

Is it possible to override += in Python?

link|improve this question

1  
Exact duplicate of stackoverflow.com/questions/728361/… – Scott Griffiths Dec 29 '09 at 9:29
yes, but using the site search for: += python gives no results. putting quotes around "+=" gives results but mostly irrelevant judging by the headlines. found this via a Google search though. – jcomeau_ictx Dec 26 '10 at 21:10
feedback

3 Answers

up vote 21 down vote accepted

Yes, override the __iadd__ method. Example:

def __iadd__(self, other):
    self.number += other.number
    return self
link|improve this answer
Thank you very much, John. I appreciate the help. – Evan Fosmark Jun 26 '09 at 4:17
6  
You shouldn't implement __iadd__ if your class represents immutable objects. In that case just implement __add__ which will be used to override += instead. For example you can use += on immutable types such as strings and integers, which couldn't be done using __iadd__. – Scott Griffiths Jan 4 '10 at 23:26
feedback

In addition to overloading __iadd__ (remember to return self!), you can also fallback on __add__, as x += y will work like x = x + y. (This is one of the pitfalls of the += operator.)

>>> class A(object):
...   def __init__(self, x):
...     self.x = x
...   def __add__(self, other):
...     return A(self.x + other.x)
>>> a = A(42)
>>> b = A(3)
>>> print a.x, b.x
42 3
>>> old_id = id(a)
>>> a += b
>>> print a.x
45
>>> print old_id == id(a)
False

It even trips up experts:

class Resource(object):
  class_counter = 0
  def __init__(self):
    self.id = self.class_counter
    self.class_counter += 1

x = Resource()
y = Resource()

What values do you expect x.id, y.id, and Resource.class_counter to have?

link|improve this answer
2  
Your second example has nothing to do with iadd or +=. The same result occurs if you use self.class_counter = self.class_counter + 1 It's just a scoping issue, using self when Resource should be used. – FogleBird Jun 26 '09 at 2:42
It's an example of how using += can lead to problems. If you're overloading iadd, then you're opening users of your class (including yourself) to this, and, at the very least, you should know the issue exists beforehand. – Roger Pate Jun 26 '09 at 4:06
feedback

http://docs.python.org/reference/datamodel.html#emulating-numeric-types

For instance, to execute the statement x += y, where x is an instance of a class that has an __iadd__() method, x.__iadd__(y) is called.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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