(self)
| 706 | list(calendar.Calendar().itermonthdays3(datetime.MAXYEAR, 12)) |
| 707 | |
| 708 | def test_itermonthdays4(self): |
| 709 | cal = calendar.Calendar(firstweekday=3) |
| 710 | days = list(cal.itermonthdays4(2001, 2)) |
| 711 | self.assertEqual(days[0], (2001, 2, 1, 3)) |
| 712 | self.assertEqual(days[-1], (2001, 2, 28, 2)) |
| 713 | |
| 714 | def test_itermonthdays(self): |
| 715 | for firstweekday in range(7): |
nothing calls this directly
no test coverage detected