Path 1: 318 calls (1.0)

list (318)

'   122 run

1def formatweek(self, theweek):
2        """
3        Return a complete week as a table row.
4        """
5        s = ''.join(self.formatday(d, wd) for (d, wd) in theweek)
6        return '<tr>%s</tr>' % s