Return an iterator for one week of weekday numbers starting with the configured first one.
(self)
| 228 | firstweekday = property(getfirstweekday, setfirstweekday) |
| 229 | |
| 230 | def iterweekdays(self): |
| 231 | """ |
| 232 | Return an iterator for one week of weekday numbers starting with the |
| 233 | configured first one. |
| 234 | """ |
| 235 | for i in range(self.firstweekday, self.firstweekday + 7): |
| 236 | yield i%7 |
| 237 | |
| 238 | def itermonthdates(self, year, month): |
| 239 | """ |
no outgoing calls