vote up 5 vote down star

Is it possible to override += in Python?

flag

3 Answers

vote up 16 vote down check

Yes, override the __iadd__ method. Example:

def __iadd__(self, other):
    self.number += other.number
    return self
link|flag
Thank you very much, John. I appreciate the help. – Evan Fosmark Jun 26 at 4:17
vote up 5 vote down

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|flag
1  
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 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 at 4:06
vote up 4 vote down

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|flag

Your Answer

Get an OpenID
or

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