Print a year's calendar.
(self, theyear, w=0, l=0, c=6, m=3)
| 405 | return ''.join(v) |
| 406 | |
| 407 | def pryear(self, theyear, w=0, l=0, c=6, m=3): |
| 408 | """Print a year's calendar.""" |
| 409 | print(self.formatyear(theyear, w, l, c, m), end='') |
| 410 | |
| 411 | |
| 412 | class HTMLCalendar(Calendar): |
nothing calls this directly
no test coverage detected