(self)
| 794 | __rmul__ = __mul__ |
| 795 | |
| 796 | def _to_microseconds(self): |
| 797 | return ((self._days * (24*3600) + self._seconds) * 1000000 + |
| 798 | self._microseconds) |
| 799 | |
| 800 | def __floordiv__(self, other): |
| 801 | if not isinstance(other, (int, timedelta)): |
no outgoing calls
no test coverage detected