Reset the date to the last day of the year and the time to 23:59:59.999999.
(self)
| 854 | return self.set(self.year, 1, 1, 0, 0, 0, 0) |
| 855 | |
| 856 | def _end_of_year(self) -> Self: |
| 857 | """ |
| 858 | Reset the date to the last day of the year |
| 859 | and the time to 23:59:59.999999. |
| 860 | """ |
| 861 | return self.set(self.year, 12, 31, 23, 59, 59, 999999) |
| 862 | |
| 863 | def _start_of_decade(self) -> Self: |
| 864 | """ |