MCPcopy Index your code
hub / github.com/RustPython/RustPython / prmonth

Method prmonth

Lib/calendar.py:385–389  ·  view source on GitHub ↗

Print a month's calendar.

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

Source from the content-addressed store, hash-verified

383 return s.center(width)
384
385 def prmonth(self, theyear, themonth, w=0, l=0):
386 """
387 Print a month's calendar.
388 """
389 print(self.formatmonth(theyear, themonth, w, l), end='')
390
391 def formatmonth(self, theyear, themonth, w=0, l=0):
392 """

Callers 1

test_prmonthMethod · 0.80

Calls 2

formatmonthMethod · 0.95
printFunction · 0.50

Tested by 1

test_prmonthMethod · 0.64