(self, day)
| 673 | self.locale = locale |
| 674 | |
| 675 | def formatweekday(self, day): |
| 676 | with different_locale(self.locale): |
| 677 | return super().formatweekday(day) |
| 678 | |
| 679 | def formatmonthname(self, theyear, themonth, withyear=True): |
| 680 | with different_locale(self.locale): |