Check if the given date is in the set of possible dates created using a length-one version of this offset class.
(self, date)
| 590 | _default_month = 12 |
| 591 | |
| 592 | def onOffset(self, date) -> bool: |
| 593 | """Check if the given date is in the set of possible dates created |
| 594 | using a length-one version of this offset class.""" |
| 595 | return date.day == date.daysinmonth and date.month == self.month |
| 596 | |
| 597 | def rollforward(self, date): |
| 598 | """Roll date forward to nearest end of year""" |
no outgoing calls
no test coverage detected