(self, other)
| 594 | return self.__class__(int(self) + other) |
| 595 | |
| 596 | def __sub__(self, other): |
| 597 | if not isinstance(other, int): |
| 598 | return NotImplemented |
| 599 | return self.__class__(int(self) - other) |
| 600 | |
| 601 | def __repr__(self): |
| 602 | return '%s(%r)' % (self.__class__.__name__, str(self)) |
nothing calls this directly
no test coverage detected