This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author valhallasw
Recipients christian.heimes, valhallasw
Date 2013-12-07.17:03:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386435830.73.0.285220903449.issue19919@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, they are.

>>> errno.EWOULDBLOCK
11

EAGAIN and EWOULDBLOCK are the only two with that errno:
>>> [(k,v) for (k,v) in errno.__dict__.items() if v==11]
[('EWOULDBLOCK', 11), ('EAGAIN', 11)]

111 is just ECONNREFUSED:
>>> [(k,v) for (k,v) in errno.__dict__.items() if v==111]
[('ECONNREFUSED', 111)]
History
Date User Action Args
2013-12-07 17:03:50valhallaswsetrecipients: + valhallasw, christian.heimes
2013-12-07 17:03:50valhallaswsetmessageid: <1386435830.73.0.285220903449.issue19919@psf.upfronthosting.co.za>
2013-12-07 17:03:50valhallaswlinkissue19919 messages
2013-12-07 17:03:50valhallaswcreate