(self, other)
| 819 | return timedelta(0, 0, _divide_and_round(b * usec, a)) |
| 820 | |
| 821 | def __mod__(self, other): |
| 822 | if isinstance(other, timedelta): |
| 823 | r = self._to_microseconds() % other._to_microseconds() |
| 824 | return timedelta(0, 0, r) |
| 825 | return NotImplemented |
| 826 | |
| 827 | def __divmod__(self, other): |
| 828 | if isinstance(other, timedelta): |
nothing calls this directly
no test coverage detected