(self)
| 860 | __rmul__ = __mul__ |
| 861 | |
| 862 | def _to_microseconds(self): |
| 863 | return ((self._days * (24*3600) + self._seconds) * 1000000 + |
| 864 | self._microseconds) |
| 865 | |
| 866 | def __floordiv__(self, other): |
| 867 | if not isinstance(other, (int, timedelta)): |
no outgoing calls
no test coverage detected