Home
last modified time | relevance | path

Searched refs:formatweek (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Dcalendar.py270 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/
Dcalendar.py303 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/
Dtest_calendar.py947 self.assertIn('class="wed text-nowrap"', self.cal.formatweek(weeks[0]))