(self, other)
| 882 | return NotImplemented |
| 883 | |
| 884 | def __divmod__(self, other): |
| 885 | if isinstance(other, timedelta): |
| 886 | q, r = divmod(self._to_microseconds(), |
| 887 | other._to_microseconds()) |
| 888 | return q, timedelta(0, 0, r) |
| 889 | return NotImplemented |
| 890 | |
| 891 | # Comparisons of timedelta objects with other. |
| 892 |
nothing calls this directly
no test coverage detected