(self, theyear, themonth, width, withyear=True)
| 657 | return super().formatweekday(day, width) |
| 658 | |
| 659 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 660 | with different_locale(self.locale): |
| 661 | return super().formatmonthname(theyear, themonth, width, withyear) |
| 662 | |
| 663 | |
| 664 | class LocaleHTMLCalendar(HTMLCalendar): |