Return a header for a week.
(self, width)
| 366 | return names[day][:width].center(width) |
| 367 | |
| 368 | def formatweekheader(self, width): |
| 369 | """ |
| 370 | Return a header for a week. |
| 371 | """ |
| 372 | return ' '.join(self.formatweekday(i, width) for i in self.iterweekdays()) |
| 373 | |
| 374 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 375 | """ |