MCPcopy Index your code
hub / github.com/python/cpython / formatmonthpage

Method formatmonthpage

Lib/calendar.py:612–617  ·  view source on GitHub ↗

Return a formatted month as a complete HTML page.

(self, theyear, themonth, width=3, css='calendar.css', encoding=None)

Source from the content-addressed store, hash-verified

610 return self._format_html_page(theyear, content, css, encoding)
611
612 def formatmonthpage(self, theyear, themonth, width=3, css='calendar.css', encoding=None):
613 """
614 Return a formatted month as a complete HTML page.
615 """
616 content = self.formatmonth(theyear, themonth, width)
617 return self._format_html_page(theyear, content, css, encoding)
618
619
620class different_locale:

Callers 2

mainFunction · 0.95

Calls 2

formatmonthMethod · 0.95
_format_html_pageMethod · 0.95

Tested by 1