(self)
| 702 | self.assertIn('class="sun2"', local_weekday) |
| 703 | |
| 704 | def test_itermonthdays3(self): |
| 705 | # ensure itermonthdays3 doesn't overflow after datetime.MAXYEAR |
| 706 | list(calendar.Calendar().itermonthdays3(datetime.MAXYEAR, 12)) |
| 707 | |
| 708 | def test_itermonthdays4(self): |
| 709 | cal = calendar.Calendar(firstweekday=3) |
nothing calls this directly
no test coverage detected