(self)
| 743 | |
| 744 | class MonthCalendarTestCase(unittest.TestCase): |
| 745 | def setUp(self): |
| 746 | self.oldfirstweekday = calendar.firstweekday() |
| 747 | calendar.setfirstweekday(self.firstweekday) |
| 748 | |
| 749 | def tearDown(self): |
| 750 | calendar.setfirstweekday(self.oldfirstweekday) |
nothing calls this directly
no test coverage detected