(self, day, width)
| 620 | self.locale = locale |
| 621 | |
| 622 | def formatweekday(self, day, width): |
| 623 | with different_locale(self.locale): |
| 624 | return super().formatweekday(day, width) |
| 625 | |
| 626 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 627 | with different_locale(self.locale): |