MCPcopy Create free account
hub / github.com/RustPython/RustPython / pryear

Method pryear

Lib/calendar.py:445–447  ·  view source on GitHub ↗

Print a year's calendar.

(self, theyear, w=0, l=0, c=6, m=3)

Source from the content-addressed store, hash-verified

443 return ''.join(v)
444
445 def pryear(self, theyear, w=0, l=0, c=6, m=3):
446 """Print a year's calendar."""
447 print(self.formatyear(theyear, w, l, c, m), end='')
448
449
450class HTMLCalendar(Calendar):

Callers 1

test_pryearMethod · 0.80

Calls 2

formatyearMethod · 0.95
printFunction · 0.50

Tested by 1

test_pryearMethod · 0.64