Print a single week (no newline).
(self, theweek, width)
| 334 | """ |
| 335 | |
| 336 | def prweek(self, theweek, width): |
| 337 | """ |
| 338 | Print a single week (no newline). |
| 339 | """ |
| 340 | print(self.formatweek(theweek, width), end='') |
| 341 | |
| 342 | def formatday(self, day, weekday, width): |
| 343 | """ |