(self, other)
| 864 | self._microseconds) |
| 865 | |
| 866 | def __floordiv__(self, other): |
| 867 | if not isinstance(other, (int, timedelta)): |
| 868 | return NotImplemented |
| 869 | usec = self._to_microseconds() |
| 870 | if isinstance(other, timedelta): |
| 871 | return usec // other._to_microseconds() |
| 872 | if isinstance(other, int): |
| 873 | return timedelta(0, 0, usec // other) |
| 874 | |
| 875 | def __truediv__(self, other): |
| 876 | if not isinstance(other, (int, float, timedelta)): |
nothing calls this directly
no test coverage detected