Reset minutes, seconds and microseconds to 0.
(self)
| 811 | return self.set(second=59, microsecond=999999) |
| 812 | |
| 813 | def _start_of_hour(self) -> Self: |
| 814 | """ |
| 815 | Reset minutes, seconds and microseconds to 0. |
| 816 | """ |
| 817 | return self.set(minute=0, second=0, microsecond=0) |
| 818 | |
| 819 | def _end_of_hour(self) -> Self: |
| 820 | """ |