In message <[EMAIL PROTECTED]>, Miles
wrote:

> except IOError, e:
>     if e.args[0] == 35:

Why not

    except IOError, (ErrNo, Msg) :
        if ErrNo == errno.EAGAIN :
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to