(self, other: timedelta)
| 338 | __radd__ = __add__ |
| 339 | |
| 340 | def __sub__(self, other: timedelta) -> Self: |
| 341 | if isinstance(other, timedelta): |
| 342 | return self.__class__(seconds=self.total_seconds() - other.total_seconds()) |
| 343 | |
| 344 | return NotImplemented |
| 345 | |
| 346 | def __neg__(self) -> Self: |
| 347 | return self.__class__( |
nothing calls this directly
no test coverage detected