(self, firstweekday=0, locale=None)
| 667 | month and weekday names in the specified locale. |
| 668 | """ |
| 669 | def __init__(self, firstweekday=0, locale=None): |
| 670 | HTMLCalendar.__init__(self, firstweekday) |
| 671 | if locale is None: |
| 672 | locale = _get_default_locale() |
| 673 | self.locale = locale |
| 674 | |
| 675 | def formatweekday(self, day): |
| 676 | with different_locale(self.locale): |
nothing calls this directly
no test coverage detected