Searched refs:theweek (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/ |
D | calendar.py | 266 def prweek(self, theweek, width): argument 270 print self.formatweek(theweek, width), 282 def formatweek(self, theweek, width): argument 286 return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) 394 def formatweek(self, theweek): argument 398 s = ''.join(self.formatday(d, wd) for (d, wd) in theweek)
|
/external/python/cpython3/Lib/ |
D | calendar.py | 299 def prweek(self, theweek, width): argument 303 print(self.formatweek(theweek, width), end='') 315 def formatweek(self, theweek, width): argument 319 return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) 446 def formatweek(self, theweek): argument 450 s = ''.join(self.formatday(d, wd) for (d, wd) in theweek)
|