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

Method formatweekday

Lib/calendar.py:655–657  ·  view source on GitHub ↗
(self, day, width)

Source from the content-addressed store, hash-verified

653 self.locale = locale
654
655 def formatweekday(self, day, width):
656 with different_locale(self.locale):
657 return super().formatweekday(day, width)
658
659 def formatmonthname(self, theyear, themonth, width, withyear=True):
660 with different_locale(self.locale):

Calls 3

different_localeClass · 0.85
superClass · 0.85
formatweekdayMethod · 0.45