Searched refs:formatmonth (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | calendar.py | 317 print self.formatmonth(theyear, themonth, w, l), 319 def formatmonth(self, theyear, themonth, w=0, l=0): member in TextCalendar 424 def formatmonth(self, theyear, themonth, withyear=True): member in HTMLCalendar 459 a(self.formatmonth(theyear, m, withyear=False)) 586 month = c.formatmonth 704 result = cal.formatmonth(int(args[1]), int(args[2]), **optdict)
|
/external/python/cpython3/Lib/ |
D | calendar.py | 350 print(self.formatmonth(theyear, themonth, w, l), end='') 352 def formatmonth(self, theyear, themonth, w=0, l=0): member in TextCalendar 478 def formatmonth(self, theyear, themonth, withyear=True): member in HTMLCalendar 516 a(self.formatmonth(theyear, m, withyear=False)) 630 month = c.formatmonth 761 result = cal.formatmonth(options.year, options.month, **optdict)
|
/external/python/cpython3/Doc/library/ |
D | calendar.rst | 141 .. method:: formatmonth(theyear, themonth, w=0, l=0) 152 Print a month's calendar as returned by :meth:`formatmonth`. 177 .. method:: formatmonth(theyear, themonth, withyear=True) 240 The CSS class for the whole month's table (used by :meth:`formatmonth`). 363 Returns a month's calendar in a multi-line string using the :meth:`formatmonth`
|
/external/python/cpython2/Doc/library/ |
D | calendar.rst | 120 .. method:: formatmonth(theyear, themonth[, w[, l]]) 131 Print a month's calendar as returned by :meth:`formatmonth`. 158 .. method:: formatmonth(theyear, themonth[, withyear]) 276 Returns a month's calendar in a multi-line string using the :meth:`formatmonth`
|
/external/python/cpython3/Lib/test/ |
D | test_calendar.py | 451 calendar.TextCalendar().formatmonth(2004, 1), 455 calendar.TextCalendar().formatmonth(0, 2), 943 self.cal.formatmonth(2017, 5))
|