Searched refs:formatday (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/ |
D | calendar.py | 272 def formatday(self, day, weekday, width): member in TextCalendar 286 return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) 385 def formatday(self, day, weekday): member in HTMLCalendar 398 s = ''.join(self.formatday(d, wd) for (d, wd) in theweek)
|
/external/python/cpython3/Lib/ |
D | calendar.py | 305 def formatday(self, day, weekday, width): member in TextCalendar 319 return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) 436 def formatday(self, day, weekday): member in HTMLCalendar 450 s = ''.join(self.formatday(d, wd) for (d, wd) in theweek)
|