Roll date backward to nearest start of quarter
(self, date)
| 488 | return date + QuarterBegin(month=self.month) |
| 489 | |
| 490 | def rollback(self, date): |
| 491 | """Roll date backward to nearest start of quarter""" |
| 492 | if self.onOffset(date): |
| 493 | return date |
| 494 | else: |
| 495 | return date - QuarterBegin(month=self.month) |
| 496 | |
| 497 | |
| 498 | class QuarterEnd(QuarterOffset): |
nothing calls this directly
no test coverage detected