(self, other)
| 454 | return NotImplemented |
| 455 | |
| 456 | def __radd__(self, other): |
| 457 | if isinstance(other, number_types): |
| 458 | return as_number(other) + self |
| 459 | return NotImplemented |
| 460 | |
| 461 | def __sub__(self, other): |
| 462 | return self + (-other) |
nothing calls this directly
no test coverage detected