(self, firstweekday=0, locale=None)
| 647 | """ |
| 648 | |
| 649 | def __init__(self, firstweekday=0, locale=None): |
| 650 | TextCalendar.__init__(self, firstweekday) |
| 651 | if locale is None: |
| 652 | locale = _get_default_locale() |
| 653 | self.locale = locale |
| 654 | |
| 655 | def formatweekday(self, day, width): |
| 656 | with different_locale(self.locale): |
nothing calls this directly
no test coverage detected