[Python-Dev] [Python-checkins] r43545 - in python/trunk: Doc/lib/libcalendar.tex Lib/calendar.py
Nick Coghlan
ncoghlan at gmail.com
Sun Apr 2 12:21:14 CEST 2006
Walter Dörwald wrote:
> firstweekday is changeable simply by assigning to the attribute:
>
> import calendar
> cal = calendar.Calendar()
> cal.firstweekday = 6
>
> The only thing lost is the range check in the setter.
Any particular reason for not making it a property? Then you could keep the
range check while still manipulating it as if it was a simple attribute.
Cheers,
Nick.
--
Nick Coghlan | ncoghlan at gmail.com | Brisbane, Australia
---------------------------------------------------------------
http://www.boredomandlaziness.org
More information about the Python-Dev
mailing list