Return an iterator for one week of weekday numbers starting with the configured first one.
(self)
| 209 | firstweekday = property(getfirstweekday, setfirstweekday) |
| 210 | |
| 211 | def iterweekdays(self): |
| 212 | """ |
| 213 | Return an iterator for one week of weekday numbers starting with the |
| 214 | configured first one. |
| 215 | """ |
| 216 | for i in range(self.firstweekday, self.firstweekday + 7): |
| 217 | yield i%7 |
| 218 | |
| 219 | def itermonthdates(self, year, month): |
| 220 | """ |
no outgoing calls