[Python-checkins] r60619 - python/branches/release25-maint/Doc/lib/libcalendar.tex

walter.doerwald python-checkins at python.org
Wed Feb 6 15:39:06 CET 2008


Author: walter.doerwald
Date: Wed Feb  6 15:39:06 2008
New Revision: 60619

Modified:
   python/branches/release25-maint/Doc/lib/libcalendar.tex
Log:
Remove month parameter from Calendar.yeardatescalendar(),
Calendar.yeardays2calendar() and Calendar.yeardayscalendar() as the methods
don't have such a parameter. Fixes issue #2017. (2.5 backport of r60618)


Modified: python/branches/release25-maint/Doc/lib/libcalendar.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libcalendar.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libcalendar.tex	Wed Feb  6 15:39:06 2008
@@ -81,20 +81,20 @@
 day numbers.
 \end{methoddesc}
 
-\begin{methoddesc}{yeardatescalendar}{year, month\optional{, width}}
+\begin{methoddesc}{yeardatescalendar}{year\optional{, width}}
 Return the data for the specified year ready for formatting. The return
 value is a list of month rows. Each month row contains up to \var{width}
 months (defaulting to 3). Each month contains between 4 and 6 weeks and
 each week contains 1--7 days. Days are \class{datetime.date} objects.
 \end{methoddesc}
 
-\begin{methoddesc}{yeardays2calendar}{year, month\optional{, width}}
+\begin{methoddesc}{yeardays2calendar}{year\optional{, width}}
 Return the data for the specified year ready for formatting (similar to
 \method{yeardatescalendar()}). Entries in the week lists are tuples of
 day numbers and weekday numbers. Day numbers outside this month are zero.
 \end{methoddesc}
 
-\begin{methoddesc}{yeardayscalendar}{year, month\optional{, width}}
+\begin{methoddesc}{yeardayscalendar}{year\optional{, width}}
 Return the data for the specified year ready for formatting (similar to
 \method{yeardatescalendar()}). Entries in the week lists are day numbers.
 Day numbers outside this month are zero.


More information about the Python-checkins mailing list