(self, other: timedelta)
| 353 | return self.as_duration().__truediv__(other) |
| 354 | |
| 355 | def __mod__(self, other: timedelta) -> Duration: # type: ignore[override] |
| 356 | return self.as_duration().__mod__(other) |
| 357 | |
| 358 | def __divmod__(self, other: timedelta) -> tuple[int, Duration]: |
| 359 | return self.as_duration().__divmod__(other) |
nothing calls this directly
no test coverage detected