(self, other)
| 876 | return timedelta(0, 0, _divide_and_round(b * usec, a)) |
| 877 | |
| 878 | def __mod__(self, other): |
| 879 | if isinstance(other, timedelta): |
| 880 | r = self._to_microseconds() % other._to_microseconds() |
| 881 | return timedelta(0, 0, r) |
| 882 | return NotImplemented |
| 883 | |
| 884 | def __divmod__(self, other): |
| 885 | if isinstance(other, timedelta): |
nothing calls this directly
no test coverage detected