Home
last modified time | relevance | path

Searched refs:_to_microseconds (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Lib/
Ddatetime.py658 usec = self._to_microseconds()
665 def _to_microseconds(self): member in timedelta
672 usec = self._to_microseconds()
674 return usec // other._to_microseconds()
681 usec = self._to_microseconds()
683 return usec / other._to_microseconds()
692 r = self._to_microseconds() % other._to_microseconds()
698 q, r = divmod(self._to_microseconds(),
699 other._to_microseconds())