D | calendar.py | 337 def formatmonthname(self, theyear, themonth, width, withyear=True): member in TextCalendar 358 s = self.formatmonthname(theyear, themonth, 7 * (w + 1) - 1) 385 names = (self.formatmonthname(theyear, k, colwidth, False) 467 def formatmonthname(self, theyear, themonth, withyear=True): member in HTMLCalendar 487 a(self.formatmonthname(theyear, themonth, withyear=withyear)) 576 def formatmonthname(self, theyear, themonth, width, withyear=True): member in LocaleTextCalendar 578 return super().formatmonthname(theyear, themonth, width, withyear) 598 def formatmonthname(self, theyear, themonth, withyear=True): member in LocaleHTMLCalendar 600 return super().formatmonthname(theyear, themonth, withyear)
|