Searched refs:withyear (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | calendar.py | 304 def formatmonthname(self, theyear, themonth, width, withyear=True): argument 309 if withyear: 414 def formatmonthname(self, theyear, themonth, withyear=True): argument 418 if withyear: 424 def formatmonth(self, theyear, themonth, withyear=True): argument 432 a(self.formatmonthname(theyear, themonth, withyear=withyear)) 459 a(self.formatmonth(theyear, m, withyear=False)) 527 def formatmonthname(self, theyear, themonth, width, withyear=True): argument 532 if withyear: 557 def formatmonthname(self, theyear, themonth, withyear=True): argument [all …]
|
/external/python/cpython3/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)) 581 def formatmonthname(self, theyear, themonth, width, withyear=True): argument 584 if withyear: 607 def formatmonthname(self, theyear, themonth, withyear=True): argument [all …]
|
/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),
|
/external/python/cpython2/Doc/library/ |
D | calendar.rst | 158 .. method:: formatmonth(theyear, themonth[, withyear]) 160 Return a month's calendar as an HTML table. If *withyear* is true the year
|
/external/python/cpython3/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
|