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.

Author corona10
Recipients belopolsky, berker.peksag, bmispelon, corona10, p-ganssle, rhettinger, serhiy.storchaka, taleinat, vstinner
Date 2019-09-01.14:47:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567349229.69.0.401020140818.issue24416@roundup.psfhosted.org>
In-reply-to
Content
@p-ganssle @taleinat

I agree that there are penalties of this patch what you said.
But I'm wondering how the `fromisocalendar` API relates to this patch.
Rather, wouldn't this patch contribute to improving the usability of the `fromisocalendar` API?
I would appreciate it if you would generously understand that my background knowledge of this module is less than yours.

AS-IS:

>>> year, week, weekday = a.isocalendar()
>>> datetime.date.fromisocalendar(year, week, weekday)
datetime.date(2019, 9, 1)

TO-BE:
>>> b = a.isocalendar()
>>> datetime.date.fromisocalendar(b.year, b.week, b.weekday)
datetime.date(2019, 9, 1)
History
Date User Action Args
2019-09-01 14:47:09corona10setrecipients: + corona10, rhettinger, belopolsky, vstinner, taleinat, berker.peksag, serhiy.storchaka, bmispelon, p-ganssle
2019-09-01 14:47:09corona10setmessageid: <1567349229.69.0.401020140818.issue24416@roundup.psfhosted.org>
2019-09-01 14:47:09corona10linkissue24416 messages
2019-09-01 14:47:09corona10create