(self, other)
| 825 | return NotImplemented |
| 826 | |
| 827 | def __divmod__(self, other): |
| 828 | if isinstance(other, timedelta): |
| 829 | q, r = divmod(self._to_microseconds(), |
| 830 | other._to_microseconds()) |
| 831 | return q, timedelta(0, 0, r) |
| 832 | return NotImplemented |
| 833 | |
| 834 | # Comparisons of timedelta objects with other. |
| 835 |
nothing calls this directly
no test coverage detected