(self, other)
| 891 | return NotImplemented |
| 892 | |
| 893 | def __divmod__(self, other): |
| 894 | if isinstance(other, timedelta): |
| 895 | q, r = divmod(self._to_microseconds(), |
| 896 | other._to_microseconds()) |
| 897 | return q, timedelta(0, 0, r) |
| 898 | return NotImplemented |
| 899 | |
| 900 | # Comparisons of timedelta objects with other. |
| 901 |
nothing calls this directly
no test coverage detected