Return a header for a week.
(self, width)
| 385 | return names[day][:width].center(width) |
| 386 | |
| 387 | def formatweekheader(self, width): |
| 388 | """ |
| 389 | Return a header for a week. |
| 390 | """ |
| 391 | return ' '.join(self.formatweekday(i, width) for i in self.iterweekdays()) |
| 392 | |
| 393 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 394 | """ |