Return a formatted month name.
(self, theyear, themonth, width, withyear=True)
| 372 | return ' '.join(self.formatweekday(i, width) for i in self.iterweekdays()) |
| 373 | |
| 374 | def formatmonthname(self, theyear, themonth, width, withyear=True): |
| 375 | """ |
| 376 | Return a formatted month name. |
| 377 | """ |
| 378 | _validate_month(themonth) |
| 379 | |
| 380 | s = month_name[themonth] |
| 381 | if withyear: |
| 382 | s = "%s %r" % (s, theyear) |
| 383 | return s.center(width) |
| 384 | |
| 385 | def prmonth(self, theyear, themonth, w=0, l=0): |
| 386 | """ |