(self, other)
| 586 | # Shorthand for Integer addition and subtraction. This is not |
| 587 | # meant to ever support addition/subtraction of addresses. |
| 588 | def __add__(self, other): |
| 589 | if not isinstance(other, int): |
| 590 | return NotImplemented |
| 591 | return self.__class__(int(self) + other) |
| 592 | |
| 593 | def __sub__(self, other): |
| 594 | if not isinstance(other, int): |