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 neologix
Recipients gvanrossum, loewis, neologix, pitrou, python-dev, vstinner, yselivanov
Date 2014-07-25.12:44:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAH_1eM2B6ZFPVdL3MVn_1vVXWxZke_ndC-kUiPdBv3WAV=dJ6A@mail.gmail.com>
In-reply-to <1406273150.61.0.538898537893.issue22018@psf.upfronthosting.co.za>
Content
> In the issue #22042, I would like to make automatically the file desscriptor or socket handler in non-blocking mode. The problem is that you cannot make a file descriptor in non-blocking mode on Windows.

I don't think we should set it non-blocking automatically, but rather
check that it's non-blocking.
The first reason I can think of is that the user passing a blocking FD
could be a sign of a bug (e.g. if the other end is in blocking mode
too), and we shouldn't silently work-around it.
History
Date User Action Args
2014-07-25 12:44:00neologixsetrecipients: + neologix, gvanrossum, loewis, pitrou, vstinner, python-dev, yselivanov
2014-07-25 12:44:00neologixlinkissue22018 messages
2014-07-25 12:44:00neologixcreate