Searched defs:formatyear (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
H A Dcalendar.py335 def formatyear(self, theyear, w=2, l=1, c=6, m=3): member in class:TextCalendar
374 print self.formatyear(theyear, w, l, c, m)
443 def formatyear(self, theyear, width=3): member in class:HTMLCalendar
483 a(self.formatyear(theyear, width))
587 calendar = c.formatyear
700 result = cal.formatyear(datetime.date.today().year, **optdict)
702 result = cal.formatyear(int(args[1]), **optdict)
/external/python/cpython3/Lib/
H A Dcalendar.py335 def formatyear(self, theyear, w=2, l=1, c=6, m=3): member in class:TextCalendar
374 print(self.formatyear(theyear, w, l, c, m))
443 def formatyear(self, theyear, width=3): member in class:HTMLCalendar
483 a(self.formatyear(theyear, width))
574 calendar = c.formatyear
700 result = cal.formatyear(datetime.date.today().year, **optdict)
702 result = cal.formatyear(options.year, **optdict)

Completed in 117 milliseconds