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 benjamin.peterson
Recipients animus, benjamin.peterson
Date 2015-10-26.01:53:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445824388.06.0.801109575053.issue25473@psf.upfronthosting.co.za>
In-reply-to
Content
This is simply the way glibc defines the error messages.

% python3
Python 3.4.3 (default, Sep 27 2015, 15:15:25) 
[GCC 4.8.5] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import errno, os
>>> errno.EAGAIN, errno.EWOULDBLOCK
(11, 11)
>>> os.strerror(errno.EAGAIN)
'Resource temporarily unavailable'
History
Date User Action Args
2015-10-26 01:53:08benjamin.petersonsetrecipients: + benjamin.peterson, animus
2015-10-26 01:53:08benjamin.petersonsetmessageid: <1445824388.06.0.801109575053.issue25473@psf.upfronthosting.co.za>
2015-10-26 01:53:07benjamin.petersonlinkissue25473 messages
2015-10-26 01:53:07benjamin.petersoncreate