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

Method formatweekday

Lib/calendar.py:675–677  ·  view source on GitHub ↗
(self, day)

Source from the content-addressed store, hash-verified

673 self.locale = locale
674
675 def formatweekday(self, day):
676 with different_locale(self.locale):
677 return super().formatweekday(day)
678
679 def formatmonthname(self, theyear, themonth, withyear=True):
680 with different_locale(self.locale):

Calls 3

different_localeClass · 0.85
superClass · 0.85
formatweekdayMethod · 0.45