Searched refs:formatweek (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/ |
D | calendar.py | 270 print self.formatweek(theweek, width), 282 def formatweek(self, theweek, width): member in TextCalendar 331 s += self.formatweek(week, w).rstrip() 367 weeks.append(self.formatweek(cal[j], w)) 394 def formatweek(self, theweek): member in HTMLCalendar 437 a(self.formatweek(week)) 583 week = c.formatweek
|
/external/python/cpython3/Lib/ |
D | calendar.py | 303 print(self.formatweek(theweek, width), end='') 315 def formatweek(self, theweek, width): member in TextCalendar 364 s += self.formatweek(week, w).rstrip() 400 weeks.append(self.formatweek(cal[j], w)) 446 def formatweek(self, theweek): member in HTMLCalendar 492 a(self.formatweek(week)) 627 week = c.formatweek
|
/external/python/cpython3/Lib/test/ |
D | test_calendar.py | 947 self.assertIn('class="wed text-nowrap"', self.cal.formatweek(weeks[0]))
|