Print a year's calendar.
(self, theyear, w=0, l=0, c=6, m=3)
| 462 | return ''.join(v) |
| 463 | |
| 464 | def pryear(self, theyear, w=0, l=0, c=6, m=3): |
| 465 | """Print a year's calendar.""" |
| 466 | print(self.formatyear(theyear, w, l, c, m), end='') |
| 467 | |
| 468 | |
| 469 | class HTMLCalendar(Calendar): |