(self, other)
| 589 | # Shorthand for Integer addition and subtraction. This is not |
| 590 | # meant to ever support addition/subtraction of addresses. |
| 591 | def __add__(self, other): |
| 592 | if not isinstance(other, int): |
| 593 | return NotImplemented |
| 594 | return self.__class__(int(self) + other) |
| 595 | |
| 596 | def __sub__(self, other): |
| 597 | if not isinstance(other, int): |
nothing calls this directly
no test coverage detected