Print a month's calendar.
(self, theyear, themonth, w=0, l=0)
| 346 | return s.center(width) |
| 347 | |
| 348 | def prmonth(self, theyear, themonth, w=0, l=0): |
| 349 | """ |
| 350 | Print a month's calendar. |
| 351 | """ |
| 352 | print(self.formatmonth(theyear, themonth, w, l), end='') |
| 353 | |
| 354 | def formatmonth(self, theyear, themonth, w=0, l=0): |
| 355 | """ |
nothing calls this directly
no test coverage detected