[Python-Dev] Cygwin: Problem detecting subprocess termination after _spawn_posix in distutils?

2007-07-30 Thread Steve Holden
I've been trying to install PIL 1.1.6 for several days now under Cygwin. I have tried the Cygwin, Image and distutils lists with nary a pointer, so I wondered whether python-dev might lead me to an answer (other than "Stop using Cygwin" ;-) Here's the output from a failed setup run with a coupl

[Python-Dev] add bool type to optparse

2007-07-30 Thread Neal Becker
Subject says it all. ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] [Python-3000] test_asyncore fails intermittently on Darwin

2007-07-30 Thread Facundo Batista
2007/7/30, Jean-Paul Calderone <[EMAIL PROTECTED]>: > Uh, no, that's basically totally wrong. Details on the ticket. I rejected it. Regards, -- .Facundo Blog: http://www.taniquetil.com.ar/plog/ PyAr: http://www.python.org/ar/ ___ Python-Dev mai

Re: [Python-Dev] [Python-3000] test_asyncore fails intermittently on Darwin

2007-07-30 Thread Alan McIntyre
Hasan, We made a change to bind the server to port 0, so that an unused port is selected for each test. I wasn't able to reproduce the failure after making this change; is the current trunk still failing for you? Cheers, Alan On 7/30/07, Hasan Diwan <[EMAIL PROTECTED]> wrote: > The issue seems

Re: [Python-Dev] [Python-3000] test_asyncore fails intermittently on Darwin

2007-07-30 Thread Jean-Paul Calderone
On Sun, 29 Jul 2007 23:40:29 -0700, Hasan Diwan <[EMAIL PROTECTED]> wrote: >The issue seems to be in the socket.py close method. It needs to sleep >socket.SO_REUSEADDR seconds before returning. Yes, it is a simple fix >in python, but the socket code is C. I found some code in socket.py >and made th