Path 1: 318 calls (1.0)
→ theweek list (318)
↩ return '
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