Trent Nelson added the comment:

On Mon, Oct 22, 2012 at 05:51:23AM -0700, Giampaolo Rodola' wrote:
> 
> Giampaolo Rodola' added the comment:
> 
> This should do it:
> 
> diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py
> --- a/Lib/test/test_asyncore.py
> +++ b/Lib/test/test_asyncore.py
> @@ -484,8 +484,9 @@
>          return self.socket.getsockname()[:2]
>  
>      def handle_accept(self):
> -        sock, addr = self.accept()
> -        self.handler(sock)
> +        pair = self.accept()
> +        if pair is not None:
> +            self.handler(pair[0])
>  
>      def handle_error(self):
>          raise

    Yeah this looks a lot more appropriate than the two changes
    Jesús posted.  I'll test against my Solaris boxes and report
    back.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue16274>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to