(self, theyear, themonth, width, withyear=True)
| 624 | return super().formatweekday(day, width) |
| 625 | |
| 626 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 627 | with different_locale(self.locale): |
| 628 | return super().formatmonthname(theyear, themonth, width, withyear) |
| 629 | |
| 630 | |
| 631 | class LocaleHTMLCalendar(HTMLCalendar): |