Searched refs:withyear (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/ |
D | calendar.py | 337 def formatmonthname(self, theyear, themonth, width, withyear=True): argument 342 if withyear: 467 def formatmonthname(self, theyear, themonth, withyear=True): argument 471 if withyear: 478 def formatmonth(self, theyear, themonth, withyear=True): argument 487 a(self.formatmonthname(theyear, themonth, withyear=withyear)) 516 a(self.formatmonth(theyear, m, withyear=False)) 576 def formatmonthname(self, theyear, themonth, width, withyear=True): argument 578 return super().formatmonthname(theyear, themonth, width, withyear) 598 def formatmonthname(self, theyear, themonth, withyear=True): argument [all …]
|
/third_party/python/Lib/test/ |
D | test_calendar.py | 461 calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=True), 467 calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=False),
|
/third_party/python/Doc/library/ |
D | calendar.rst | 177 .. method:: formatmonth(theyear, themonth, withyear=True) 179 Return a month's calendar as an HTML table. If *withyear* is true the year
|