Path 1: 79 calls (1.0)

0 (79) 1 (79) 2 (79) 3 (79) 4 (79) 5 (79) 6 (79)

1def iterweekdays(self):
2        """
3        Return an iterator for one week of weekday numbers starting with the
4        configured first one.
5        """
6        for i in range(self.firstweekday, self.firstweekday + 7):
7            yield i%7