[Python-checkins] r60651 - python/trunk/Doc/library/calendar.rst

walter.doerwald python-checkins at python.org
Thu Feb 7 20:48:35 CET 2008


Author: walter.doerwald
Date: Thu Feb  7 20:48:34 2008
New Revision: 60651

Modified:
   python/trunk/Doc/library/calendar.rst
Log:
Fix documentation for Calendar.iterweekdays(): firstweekday is a property.
Fixes second part of #2018.


Modified: python/trunk/Doc/library/calendar.rst
==============================================================================
--- python/trunk/Doc/library/calendar.rst	(original)
+++ python/trunk/Doc/library/calendar.rst	Thu Feb  7 20:48:34 2008
@@ -39,9 +39,9 @@
 
 .. method:: Calendar.iterweekdays(weekday)
 
-   Return an iterator for the week day numbers that will be used for one week. The
-   first number from the iterator will be the same as the number returned by
-   :meth:`firstweekday`.
+   Return an iterator for the week day numbers that will be used for one week.
+   The first value from the iterator will be the same as the value of the
+   :attr:`firstweekday` property.
 
 
 .. method:: Calendar.itermonthdates(year, month)


More information about the Python-checkins mailing list