Set seconds to 59 and microseconds to 999999.
(self)
| 805 | return self.set(second=0, microsecond=0) |
| 806 | |
| 807 | def _end_of_minute(self) -> Self: |
| 808 | """ |
| 809 | Set seconds to 59 and microseconds to 999999. |
| 810 | """ |
| 811 | return self.set(second=59, microsecond=999999) |
| 812 | |
| 813 | def _start_of_hour(self) -> Self: |
| 814 | """ |