(self, other)
| 855 | self._microseconds) |
| 856 | |
| 857 | def __floordiv__(self, other): |
| 858 | if not isinstance(other, (int, timedelta)): |
| 859 | return NotImplemented |
| 860 | usec = self._to_microseconds() |
| 861 | if isinstance(other, timedelta): |
| 862 | return usec // other._to_microseconds() |
| 863 | if isinstance(other, int): |
| 864 | return timedelta(0, 0, usec // other) |
| 865 | |
| 866 | def __truediv__(self, other): |
| 867 | if not isinstance(other, (int, float, timedelta)): |
nothing calls this directly
no test coverage detected