Print a month's calendar.
(self, theyear, themonth, w=0, l=0)
| 402 | return s.center(width) |
| 403 | |
| 404 | def prmonth(self, theyear, themonth, w=0, l=0): |
| 405 | """ |
| 406 | Print a month's calendar. |
| 407 | """ |
| 408 | print(self.formatmonth(theyear, themonth, w, l), end='') |
| 409 | |
| 410 | def formatmonth(self, theyear, themonth, w=0, l=0): |
| 411 | """ |