/external/python/cpython2/Lib/ |
D | calendar.py | 304 def formatmonthname(self, theyear, themonth, width, withyear=True): member in TextCalendar 325 s = self.formatmonthname(theyear, themonth, 7 * (w + 1) - 1) 352 names = (self.formatmonthname(theyear, k, colwidth, False) 414 def formatmonthname(self, theyear, themonth, withyear=True): member in HTMLCalendar 432 a(self.formatmonthname(theyear, themonth, withyear=withyear)) 527 def formatmonthname(self, theyear, themonth, width, withyear=True): member in LocaleTextCalendar 557 def formatmonthname(self, theyear, themonth, withyear=True): member in LocaleHTMLCalendar
|
/external/python/cpython3/Lib/test/ |
D | test_calendar.py | 461 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) 939 self.cal.formatmonthname(2017, 5))
|
/external/python/cpython3/Lib/ |
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)) 581 def formatmonthname(self, theyear, themonth, width, withyear=True): member in LocaleTextCalendar 607 def formatmonthname(self, theyear, themonth, withyear=True): member in LocaleHTMLCalendar
|
/external/python/cpython2/Lib/test/ |
D | test_calendar.py | 267 old_october = calendar.TextCalendar().formatmonthname(2010, 10, 10) 271 local_month = cal.formatmonthname(2010, 10, 10) 282 local_month = cal.formatmonthname(2010, 10) 286 new_october = calendar.TextCalendar().formatmonthname(2010, 10, 10)
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | ttkcalendar.py | 137 header = self._cal.formatmonthname(year, month, 0)
|
/external/python/cpython3/Doc/library/ |
D | calendar.rst | 232 The month's head CSS class (used by :meth:`formatmonthname`). 295 The :meth:`formatweekday` and :meth:`formatmonthname` methods of these two
|
/external/python/cpython2/Doc/library/ |
D | calendar.rst | 201 The :meth:`formatweekday` and :meth:`formatmonthname` methods of these two
|