(self, other: timedelta)
| 356 | return self.as_duration().__mod__(other) |
| 357 | |
| 358 | def __divmod__(self, other: timedelta) -> tuple[int, Duration]: |
| 359 | return self.as_duration().__divmod__(other) |
| 360 | |
| 361 | def __abs__(self) -> Self: |
| 362 | return self.__class__(self.start, self.end, absolute=True) |
nothing calls this directly
no test coverage detected