Determines if the instance is in the past, ie. less than now.
(self)
| 515 | return self > self.now(self.timezone) |
| 516 | |
| 517 | def is_past(self) -> bool: |
| 518 | """ |
| 519 | Determines if the instance is in the past, ie. less than now. |
| 520 | """ |
| 521 | return self < self.now(self.timezone) |
| 522 | |
| 523 | def is_long_year(self) -> bool: |
| 524 | """ |