(self)
| 851 | __rmul__ = __mul__ |
| 852 | |
| 853 | def _to_microseconds(self): |
| 854 | return ((self._days * (24*3600) + self._seconds) * 1000000 + |
| 855 | self._microseconds) |
| 856 | |
| 857 | def __floordiv__(self, other): |
| 858 | if not isinstance(other, (int, timedelta)): |
no outgoing calls
no test coverage detected