(self, other)
| 885 | return timedelta(0, 0, _divide_and_round(b * usec, a)) |
| 886 | |
| 887 | def __mod__(self, other): |
| 888 | if isinstance(other, timedelta): |
| 889 | r = self._to_microseconds() % other._to_microseconds() |
| 890 | return timedelta(0, 0, r) |
| 891 | return NotImplemented |
| 892 | |
| 893 | def __divmod__(self, other): |
| 894 | if isinstance(other, timedelta): |
nothing calls this directly
no test coverage detected