(self)
| 747 | calendar.setfirstweekday(self.firstweekday) |
| 748 | |
| 749 | def tearDown(self): |
| 750 | calendar.setfirstweekday(self.oldfirstweekday) |
| 751 | |
| 752 | def check_weeks(self, year, month, weeks): |
| 753 | cal = calendar.monthcalendar(year, month) |
nothing calls this directly
no test coverage detected