Re: [Python-Dev] cpython: Issue #23752: When built from an existing file descriptor, io.FileIO() now only
On 30.03.15 04:22, victor.stinner wrote:
https://hg.python.org/cpython/rev/bc2a22eaa0af changeset: 95269:bc2a22eaa0af user: Victor Stinner <victor.stinner@gmail.com> date: Mon Mar 30 03:21:06 2015 +0200 summary: Issue #23752: When built from an existing file descriptor, io.FileIO() now only calls fstat() once. Before fstat() was called twice, which was not necessary.
files: Misc/NEWS | 26 ++++++++++++++++++++++++++ Modules/_io/fileio.c | 24 ------------------------ 2 files changed, 26 insertions(+), 24 deletions(-)
diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2,6 +2,32 @@ Python News +++++++++++
+What's New in Python 3.5.0 alpha 4? +===================================
Return time machine back Victor. Current version is 3.5.0a2+.
Hi, 2015-03-30 8:06 GMT+02:00 Serhiy Storchaka <storchaka@gmail.com>:
+What's New in Python 3.5.0 alpha 4? +===================================
Return time machine back Victor. Current version is 3.5.0a2+.
Larry Hastings and Ned Deily told me that Larry is releasing Python 3.5 alpha 3. You can see their repository at: https://hg.python.org/releasing/3.5/ According to the PEP 478 - Python 3.5 Release Schedule, we are in time: 3.5.0 alpha 3: March 29, 2015 Maybe Misc/NEWS was not updated when the alpha 2 was released? It's always a mess to maintain this file... We should generate it from Mercurial changelogs instead. So is it correct to use "alpha 4" in Misc/NEWS? Victor
On 03/30/2015 12:30 AM, Victor Stinner wrote:
So is it correct to use "alpha 4" in Misc/NEWS?
It's the release manager's responsibility to update the version number in Misc/NEWS. As I finish up 3.5.0a3, I will be changing it to say "What's New in Python 3.5.0 alpha 4?". And I will change the release number in patchlevel.h to say "3.5.0a3+". I don't know why it is this way, but that's the way it is, and I assume there's a good reason for it. Since you don't have the 3.5.0a3 changes yet, no, it's not correct for you to put "alpha 4" into Misc/NEWS. Doing so would trip me up a little. The release process is mostly automated, although there are manual steps where the RM is guided through the process. Fixing up the heading in Misc/NEWS is one such manual step. FWIW, I have in the past bungled a release so badly that I missed making this change. I was happy to discover someone else had fixed it for me. So I'm not saying "nobody but the RM should ever touch it". But maybe you should wait a day or two after the release comes out before you start up your text editor. Cheers, //arry/
participants (3)
-
Larry Hastings
-
Serhiy Storchaka
-
Victor Stinner