In-place arithmetic operations

__iadd__(self, b): self += b
__isub__(self, b): self -= b
__imul__(self, b): self *= b
__idiv__(self, b): self /= b

previousnexttable of contents