Thanks for your comments, Jean-Paul.
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, 03 Jul 2007 08:54:25 -0700, Samuel <[EMAIL PROTECTED]> wrote:
>On Jul 3, 3:03 pm, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote:
>> EPIPE results when writing to a socket for which writing has been shutdown.
>> This most commonly occurs when the socket has closed. You need to handle
>> thi
On Jul 3, 3:03 pm, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote:
> EPIPE results when writing to a socket for which writing has been shutdown.
> This most commonly occurs when the socket has closed. You need to handle
> this exception, since you can't absolutely prevent the socket from being
> cl
On Tue, 03 Jul 2007 05:12:22 -0700, Samuel <[EMAIL PROTECTED]> wrote:
>Hi,
>
>When using telnetlib, the connection sometimes breaks with the
>following error:
>
>"error: (32, 'Broken pipe')"
>
>where the traceback points to
>
>self.sock.send(buffer)
>
>in telnetlib.py. The problem is unreproducible