(self, highlight_day=None, *args, **kwargs)
| 683 | |
| 684 | class _CLIDemoCalendar(TextCalendar): |
| 685 | def __init__(self, highlight_day=None, *args, **kwargs): |
| 686 | super().__init__(*args, **kwargs) |
| 687 | self.highlight_day = highlight_day |
| 688 | |
| 689 | def formatweek(self, theweek, width, *, highlight_day=None): |
| 690 | """ |