(self)
| 831 | self.assertIn('class="sun2"', local_weekday) |
| 832 | |
| 833 | def test_itermonthdays3(self): |
| 834 | # ensure itermonthdays3 doesn't overflow after datetime.MAXYEAR |
| 835 | list(calendar.Calendar().itermonthdays3(datetime.MAXYEAR, 12)) |
| 836 | |
| 837 | def test_itermonthdays4(self): |
| 838 | cal = calendar.Calendar(firstweekday=3) |
nothing calls this directly
no test coverage detected