(self, day, width)
| 653 | self.locale = locale |
| 654 | |
| 655 | def formatweekday(self, day, width): |
| 656 | with different_locale(self.locale): |
| 657 | return super().formatweekday(day, width) |
| 658 | |
| 659 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 660 | with different_locale(self.locale): |