summaryrefslogtreecommitdiffstats
path: root/Lib/calendar.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/calendar.py')
-rw-r--r--Lib/calendar.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py
index 2b974bf..4965773 100644
--- a/Lib/calendar.py
+++ b/Lib/calendar.py
@@ -131,11 +131,9 @@ class Calendar(object):
self.firstweekday = firstweekday # 0 = Monday, 6 = Sunday
def getfirstweekday(self):
- return self._firstweekday
+ return self._firstweekday % 7
def setfirstweekday(self, firstweekday):
- if not MONDAY <= firstweekday <= SUNDAY:
- raise IllegalWeekdayError(firstweekday)
self._firstweekday = firstweekday
firstweekday = property(getfirstweekday, setfirstweekday)