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 shigin
Recipients shigin
Date 2008-05-22.13:23:26
SpamBayes Score 0.009028911
Marked as misclassified No
Message-id <1211462641.02.0.497686644895.issue2944@psf.upfronthosting.co.za>
In-reply-to
Content
Unix select returns socket in read fd set and write fd set if 
nonblocking socket attempts to connect to unaviable address. 

asyncore should check this case by calling getsockopt with SO_ERROR 
optname. If return value is 0 it should call handle_connect_event, 
otherwise if should call handle_expt_event.

Attached file prints "get exception" if asyncore can't connect to 
remote side, not "uncaptured python exception"

Patches from Issue1736190 do not fix this case.
History
Date User Action Args
2008-05-22 13:24:03shiginsetspambayes_score: 0.00902891 -> 0.009028911
recipients: + shigin
2008-05-22 13:24:01shiginsetspambayes_score: 0.00902891 -> 0.00902891
messageid: <1211462641.02.0.497686644895.issue2944@psf.upfronthosting.co.za>
2008-05-22 13:23:58shiginlinkissue2944 messages
2008-05-22 13:23:56shigincreate