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 Kotan
Recipients Kotan, amaury.forgeotdarc, brian.curtin, loewis, pitrou, tim.golden
Date 2010-11-20.19:50:21
SpamBayes Score 0.00041113968
Marked as misclassified No
Message-id <1290282623.33.0.49320482046.issue10469@psf.upfronthosting.co.za>
In-reply-to
Content
#define EWOULDBLOCK     140
#define WSAEWOULDBLOCK                   10035L

The editor suggests that EWOULDBLOCK is already defined, therefore its code is used, i.e. 140.

#define ECONNREFUSED    107
#define WSAECONNREFUSED                  10061L

The E* are defined in errno.h and the WSA* in WinError.h. It seems that in my case the POSIX compliant headers are used.
History
Date User Action Args
2010-11-20 19:50:23Kotansetrecipients: + Kotan, loewis, amaury.forgeotdarc, pitrou, tim.golden, brian.curtin
2010-11-20 19:50:23Kotansetmessageid: <1290282623.33.0.49320482046.issue10469@psf.upfronthosting.co.za>
2010-11-20 19:50:21Kotanlinkissue10469 messages
2010-11-20 19:50:21Kotancreate