(self, **extra: Any)
| 423 | return ret + timedelta(days=self.days) |
| 424 | |
| 425 | def _fields(self, **extra: Any) -> dict[str, Any]: |
| 426 | return dictfilter({ |
| 427 | 'year': self.year, 'month': self.month, 'day': self.day, |
| 428 | 'hour': self.hour, 'minute': self.minute, |
| 429 | 'second': self.second, 'microsecond': self.microsecond, |
| 430 | }, **extra) |
| 431 | |
| 432 | |
| 433 | def utcoffset( |
no outgoing calls