[issue2869] Wrong doc for `calendar.Calendar.iterweekdays`

2008-11-13 Thread benny daon
benny daon <[EMAIL PROTECTED]> added the comment: It confused me. Got to this URL: http://www.python.org/doc/2.5.2/lib/module-calendar.html -- nosy: +daonb ___ Python tracker <[EMAIL PROTECTED]> _

[issue2869] Wrong doc for `calendar.Calendar.iterweekdays`

2008-05-16 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks, fixed in r63365. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2869] Wrong doc for `calendar.Calendar.iterweekdays`

2008-05-15 Thread Alexander Belopolsky
Changes by Alexander Belopolsky <[EMAIL PROTECTED]>: -- keywords: +patch Added file: http://bugs.python.org/file10335/issue2869.diff __ Tracker <[EMAIL PROTECTED]> __ _

[issue2869] Wrong doc for `calendar.Calendar.iterweekdays`

2008-05-15 Thread Jochen Kupperschmidt
New submission from Jochen Kupperschmidt <[EMAIL PROTECTED]>: The documentation for `calendar.Calendar.iterweekdays` (both 2.5 and 2.6a3 online) states that the method would take an argument `weekday`. However, testing it and looking at the module source reveals that it takes no arguments. -