Set minutes and seconds to 59 and microseconds to 999999.
(self)
| 817 | return self.set(minute=0, second=0, microsecond=0) |
| 818 | |
| 819 | def _end_of_hour(self) -> Self: |
| 820 | """ |
| 821 | Set minutes and seconds to 59 and microseconds to 999999. |
| 822 | """ |
| 823 | return self.set(minute=59, second=59, microsecond=999999) |
| 824 | |
| 825 | def _start_of_day(self) -> Self: |
| 826 | """ |