Print a single week (no newline).
(self, theweek, width)
| 299 | """ |
| 300 | |
| 301 | def prweek(self, theweek, width): |
| 302 | """ |
| 303 | Print a single week (no newline). |
| 304 | """ |
| 305 | print(self.formatweek(theweek, width), end='') |
| 306 | |
| 307 | def formatday(self, day, weekday, width): |
| 308 | """ |
nothing calls this directly
no test coverage detected