This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Calendar.yeardatescalendar etc. do not take 'month' argument
Type: behavior Stage:
Components: Documentation Versions: Python 2.6, Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: doerwalter, georg.brandl, mft
Priority: normal Keywords: easy

Created on 2008-02-06 05:44 by mft, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg62088 - (view) Author: MATSUI Tetsushi (mft) Date: 2008-02-06 05:44
Similar to the issue 1046,
The documentation of Calendar.year*calendar incorrectly have 'month'
argument.

>>> cal = calendar.Calendar(5)
>>> cal.yeardatescalendar(2008,2,3)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: yeardatescalendar() takes at most 3 arguments (4 given)
>>>
msg62095 - (view) Author: Walter Dörwald (doerwalter) * (Python committer) Date: 2008-02-06 14:39
Fixed in r60618 (trunk) and r60619 (release25-maint)
History
Date User Action Args
2022-04-11 14:56:30adminsetgithub: 46301
2008-02-06 14:39:55doerwaltersetstatus: open -> closed
nosy: + doerwalter
resolution: fixed
messages: + msg62095
2008-02-06 12:08:07christian.heimessetpriority: normal
assignee: georg.brandl
type: behavior
keywords: + easy
nosy: + georg.brandl
2008-02-06 05:44:27mftcreate