Message350954
@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) |
|
Date |
User |
Action |
Args |
2019-09-01 14:47:09 | corona10 | set | recipients:
+ corona10, rhettinger, belopolsky, vstinner, taleinat, berker.peksag, serhiy.storchaka, bmispelon, p-ganssle |
2019-09-01 14:47:09 | corona10 | set | messageid: <1567349229.69.0.401020140818.issue24416@roundup.psfhosted.org> |
2019-09-01 14:47:09 | corona10 | link | issue24416 messages |
2019-09-01 14:47:09 | corona10 | create | |
|