Reputation: 10260
Reading the Python-Future docs for unicode [1], I found out about a fix to Python 2.7 [2]. It is resolved as accepted and closed.
How can I find out in which python version it will appear? May I assume since we just had a release in December [3] that it will be in the next one? I see that the detailed changelogs [6] contain ticket id's for each item, even though release notes [7] do not.
I have had the same question previously with older tickets [4], eg [5]. It seems that the final shipped-in point version is not listed in the bugbase. I hope this is a good place to ask this question! I have been wanting to help out on the python code base, so this will help me get my feet wet.
Upvotes: 0
Views: 68
Reputation: 11404
If a change is committed to a particular branch, it should appear in the next point release after that date.
I checked the for the first version of Python 2.7 released after the date the fix was checked in. That's release 2.7.7. Here is a link to the announcement of that release:
https://www.python.org/download/releases/2.7.7/
And if you follow the numerous bugfixes
, you get this:
https://hg.python.org/cpython/raw-file/f89216059edf/Misc/NEWS
The same file from the 2.7.9 release also lists the fix under release 2.7.7.
https://hg.python.org/cpython/raw-file/v2.7.9/Misc/NEWS
Upvotes: 1