Lines Matching defs:calendar
4 calendar.py
5 A calendar generator plugin for Inkscape, but also can be used as a standalone
33 import calendar
163 # Set the calendar start day
165 calendar.setfirstweekday(6)
167 calendar.setfirstweekday(0)
309 cal = calendar.monthcalendar(self.options.year,m)
313 self.in_line_month(calendar.monthcalendar(self.options.year - 1, 12))
316 self.in_line_month(calendar.monthcalendar(self.options.year, m - 1))
319 self.in_line_month(calendar.monthcalendar(self.options.year + 1, 1))
322 self.in_line_month(calendar.monthcalendar(self.options.year, m + 1))