Home
last modified time | relevance | path

Searched refs:formatyearpage (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
Dcalendar.py465 def formatyearpage(self, theyear, width=3, css='calendar.css', encoding=None): member in HTMLCalendar
684 print cal.formatyearpage(datetime.date.today().year, **optdict)
686 print cal.formatyearpage(int(args[1]), **optdict)
/external/python/cpython3/Lib/
Dcalendar.py522 def formatyearpage(self, theyear, width=3, css='calendar.css', encoding=None): member in HTMLCalendar
741 write(cal.formatyearpage(datetime.date.today().year, **optdict))
743 write(cal.formatyearpage(options.year, **optdict))
/external/python/cpython2/Lib/test/
Dtest_calendar.py211 calendar.HTMLCalendar().formatyearpage(2004).strip(),
/external/python/cpython3/Lib/test/
Dtest_calendar.py385 output = cal.formatyearpage(2004, encoding=req)
/external/python/cpython2/Doc/library/
Dcalendar.rst171 .. method:: formatyearpage(theyear[, width[, css[, encoding]]])
/external/python/cpython3/Doc/library/
Dcalendar.rst190 .. method:: formatyearpage(theyear, width=3, css='calendar.css', encoding=None)