Home
last modified time | relevance | path

Searched refs:formatmonthname (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/test/
Dtest_calendar.py461 calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=True),
467 calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=False),
547 old_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
551 local_month = cal.formatmonthname(2010, 10, 10)
561 local_month = cal.formatmonthname(2010, 10)
564 new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
570 local_month = cal.formatmonthname(2010, 10, 10)
576 local_month = cal.formatmonthname(2010, 10, 10)
963 self.cal.formatmonthname(2017, 5))
/third_party/python/Lib/
Dcalendar.py337 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)
/third_party/python/Doc/library/
Dcalendar.rst232 The month's head CSS class (used by :meth:`formatmonthname`).
295 The :meth:`formatweekday` and :meth:`formatmonthname` methods of these two
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst2494 Refactor formatweekday, formatmonthname methods in LocaleHTMLCalendar and