GH-90750: Use datetime.fromisocalendar in _strptime#103802
GH-90750: Use datetime.fromisocalendar in _strptime#103802pganssle merged 1 commit intopython:mainfrom
Conversation
|
It looks like this breaks both backwards compatibility and the documented behaviour of |
Maybe for some interpretations of backwards compatibility, but this doesn't break any existing tests and it seems like a bug that
That is the documented behavior of
This should be consistent with |
For fixing bugs that need a backwards compatibility break, we have the deprecation process. Here, given that week 0 is a documented extension to the ISO week numbers, rejecting
Yes, sorry. |
|
I'm sorry, can you clarify what you think this breaks? This PR does not affect the handling of week 0. This is the current behavior: What has changed is that I don't plan to backport this to 3.11, but I think that this can very reasonably be considered a bug fix. I think you may be thinking of |
This unifies the ISO → Gregorian conversion logic and improves handling of invalid ISO weeks.
cd62fb1 to
8aee83c
Compare
|
+1 for me on the fix itself. I think it can be considered a bugfix, but I also think it has a fair chance of breaking user code. Unless it's a lot of trouble, I'd probably keep the old logic with a |
encukou
left a comment
There was a problem hiding this comment.
Ah, I see now!
Sorry for the noise, and thanks for your patience explaining it.
|
No worries! I think I am going to skip the |
This unifies the ISO → Gregorian conversion logic and improves handling of invalid ISO weeks.