Determines if the instance is in the past, ie. less than now.
(self)
| 138 | return self > self.today() |
| 139 | |
| 140 | def is_past(self) -> bool: |
| 141 | """ |
| 142 | Determines if the instance is in the past, ie. less than now. |
| 143 | """ |
| 144 | return self < self.today() |
| 145 | |
| 146 | def is_leap_year(self) -> bool: |
| 147 | """ |