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