Print a single week (no newline).
(self, theweek, width)
| 353 | """ |
| 354 | |
| 355 | def prweek(self, theweek, width): |
| 356 | """ |
| 357 | Print a single week (no newline). |
| 358 | """ |
| 359 | print(self.formatweek(theweek, width), end='') |
| 360 | |
| 361 | def formatday(self, day, weekday, width): |
| 362 | """ |