Return the DateTime without timezone information.
(self)
| 313 | return Time(self.hour, self.minute, self.second, self.microsecond) |
| 314 | |
| 315 | def naive(self) -> Self: |
| 316 | """ |
| 317 | Return the DateTime without timezone information. |
| 318 | """ |
| 319 | return self.__class__( |
| 320 | self.year, |
| 321 | self.month, |
| 322 | self.day, |
| 323 | self.hour, |
| 324 | self.minute, |
| 325 | self.second, |
| 326 | self.microsecond, |
| 327 | ) |
| 328 | |
| 329 | def on(self, year: int, month: int, day: int) -> Self: |
| 330 | """ |
no outgoing calls