MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / _to_microseconds

Method _to_microseconds

tools/python-3.11.9-amd64/Lib/datetime.py:796–798  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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)):

Callers 5

__mul__Method · 0.95
__floordiv__Method · 0.95
__truediv__Method · 0.95
__mod__Method · 0.95
__divmod__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected