Re: [Python-Dev] 2.7.4

2013-01-19 Thread Georg Brandl
Am 19.01.2013 20:30, schrieb Benjamin Peterson: > It's been almost a year since 2.7.3, so it's time for another 2.7 > bugfix release. > > 2013-02-02 - 2.7.4 release branch created; rc released > 2013-02-16 - 2.7.4 released > > Does this work for you, Martin and Ned? I would propose to sync this

Re: [Python-Dev] Modules/socketmodule.c: avoiding second fcntl() call worth the effort?

2013-01-19 Thread Peter Portante
I don't have a concrete case where a socket object's setblocking() method is called with a value in one module, handed off to another module (which does not know what the first did with it) which in turn also calls setblocking() with the same value. It certainly seems that that not is a common patt

Re: [Python-Dev] Modules/socketmodule.c: avoiding second fcntl() call worth the effort?

2013-01-19 Thread Guido van Rossum
On Sat, Jan 19, 2013 at 8:49 PM, Peter Portante wrote: > I noticed while stracing a process that sock.setblocking() calls always > result in pairs of fcntl() calls on Linux. Checking 2.6.8, 2.7.3, and 3.3.0 > Modules/socketmodule.c, the code seems to use the following (unless I have > missed somet

Re: [Python-Dev] Modules/socketmodule.c: avoiding second fcntl() call worth the effort?

2013-01-19 Thread Benjamin Peterson
2013/1/19 Peter Portante : > Hello folks, > > I noticed while stracing a process that sock.setblocking() calls always > result in pairs of fcntl() calls on Linux. Checking 2.6.8, 2.7.3, and 3.3.0 > Modules/socketmodule.c, the code seems to use the following (unless I have > missed something): > >

[Python-Dev] Modules/socketmodule.c: avoiding second fcntl() call worth the effort?

2013-01-19 Thread Peter Portante
Hello folks, I noticed while stracing a process that sock.setblocking() calls always result in pairs of fcntl() calls on Linux. Checking 2.6.8, 2.7.3, and 3.3.0 Modules/socketmodule.c, the code seems to use the following (unless I have missed something): delay_flag = fcntl(s->sock_fd, F_GETFL

Re: [Python-Dev] 2.7.4

2013-01-19 Thread Chris McDonough
On Sat, 2013-01-19 at 14:30 -0500, Benjamin Peterson wrote: > It's been almost a year since 2.7.3, so it's time for another 2.7 > bugfix release. > > 2013-02-02 - 2.7.4 release branch created; rc released > 2013-02-16 - 2.7.4 released > > Does this work for you, Martin and Ned? I have a pet issu

Re: [Python-Dev] 2.7.4

2013-01-19 Thread Simon Cross
On Sat, Jan 19, 2013 at 9:30 PM, Benjamin Peterson wrote: > It's been almost a year since 2.7.3, so it's time for another 2.7 > bugfix release. > > 2013-02-02 - 2.7.4 release branch created; rc released > 2013-02-16 - 2.7.4 released The Cape Town Python User Group is having a Python Bug Day next

Re: [Python-Dev] 2.7.4

2013-01-19 Thread Ned Deily
In article , Benjamin Peterson wrote: > It's been almost a year since 2.7.3, so it's time for another 2.7 > bugfix release. > > 2013-02-02 - 2.7.4 release branch created; rc released > 2013-02-16 - 2.7.4 released > > Does this work for you, Martin and Ned? That works for me. There are also s

[Python-Dev] 2.7.4

2013-01-19 Thread Benjamin Peterson
It's been almost a year since 2.7.3, so it's time for another 2.7 bugfix release. 2013-02-02 - 2.7.4 release branch created; rc released 2013-02-16 - 2.7.4 released Does this work for you, Martin and Ned? -- Regards, Benjamin ___ Python-Dev mailing li