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

Method prmonth

Lib/calendar.py:404–408  ·  view source on GitHub ↗

Print a month's calendar.

(self, theyear, themonth, w=0, l=0)

Source from the content-addressed store, hash-verified

402 return s.center(width)
403
404 def prmonth(self, theyear, themonth, w=0, l=0):
405 """
406 Print a month's calendar.
407 """
408 print(self.formatmonth(theyear, themonth, w, l), end='')
409
410 def formatmonth(self, theyear, themonth, w=0, l=0):
411 """

Callers 1

test_prmonthMethod · 0.80

Calls 1

formatmonthMethod · 0.95

Tested by 1

test_prmonthMethod · 0.64