Method: calendar.Calendar.itermonthdates
Calls: 12, Exceptions: 0, Paths: 1Back
Path 1: 12 calls (1.0)
2004 (12)
1 (1) 2 (1) 3 (1) 4 (1) 5 (1) 6 (1) 7 (1) 8 (1) 9 (1) 10 (1)
date (434)
1def itermonthdates(self, year, month):
2 """
3 Return an iterator for one month. The iterator will yield datetime.date
4 values and will always iterate through complete weeks, so it will yield
5 dates outside the specified month.
6 """
7 for y, m, d in self.itermonthdays3(year, month):
8 yield datetime.date(y, m, d)