Returns a single week in a string (no newline).
(self, theweek, width)
| 350 | return s.center(width) |
| 351 | |
| 352 | def formatweek(self, theweek, width): |
| 353 | """ |
| 354 | Returns a single week in a string (no newline). |
| 355 | """ |
| 356 | return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) |
| 357 | |
| 358 | def formatweekday(self, day, width): |
| 359 | """ |