Reset the date to the first day of the month and the time to 00:00:00.
(self)
| 835 | return self.at(23, 59, 59, 999999) |
| 836 | |
| 837 | def _start_of_month(self) -> Self: |
| 838 | """ |
| 839 | Reset the date to the first day of the month and the time to 00:00:00. |
| 840 | """ |
| 841 | return self.set(self.year, self.month, 1, 0, 0, 0, 0) |
| 842 | |
| 843 | def _end_of_month(self) -> Self: |
| 844 | """ |