Returns a single week in a string (no newline).
(self, theweek, width)
| 315 | return s.center(width) |
| 316 | |
| 317 | def formatweek(self, theweek, width): |
| 318 | """ |
| 319 | Returns a single week in a string (no newline). |
| 320 | """ |
| 321 | return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) |
| 322 | |
| 323 | def formatweekday(self, day, width): |
| 324 | """ |
no test coverage detected