Print a year's calendar.
(self, theyear, w=0, l=0, c=6, m=3)
| 443 | return ''.join(v) |
| 444 | |
| 445 | def pryear(self, theyear, w=0, l=0, c=6, m=3): |
| 446 | """Print a year's calendar.""" |
| 447 | print(self.formatyear(theyear, w, l, c, m), end='') |
| 448 | |
| 449 | |
| 450 | class HTMLCalendar(Calendar): |