Returns a new instance with the current date set to a different date.
(self, year: int, month: int, day: int)
| 327 | ) |
| 328 | |
| 329 | def on(self, year: int, month: int, day: int) -> Self: |
| 330 | """ |
| 331 | Returns a new instance with the current date set to a different date. |
| 332 | """ |
| 333 | return self.set(year=int(year), month=int(month), day=int(day)) |
| 334 | |
| 335 | def at( |
| 336 | self, hour: int, minute: int = 0, second: int = 0, microsecond: int = 0 |