Return a built-in datetime.time (nanosecond precision truncated to micros).
(self)
| 846 | return self.nanosecond_time % Time.SECOND |
| 847 | |
| 848 | def time(self): |
| 849 | """ |
| 850 | Return a built-in datetime.time (nanosecond precision truncated to micros). |
| 851 | """ |
| 852 | return datetime.time(hour=self.hour, minute=self.minute, second=self.second, |
| 853 | microsecond=self.nanosecond // Time.MICRO) |
| 854 | |
| 855 | def _from_timestamp(self, t): |
| 856 | if t >= Time.DAY: |
no outgoing calls