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 theller
Recipients
Date 2002-09-19.07:44:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
On windows, select.select raises select.error(2, 'No 
such file or directory) if called with 3 empty lists.
This is not caught in asyncore's loop.

The attached patch fixes this by simply ignoring the 
exception (2 is ENOENT) in the same way as is done 
for EINTR already.

It may be argued that it would be better to catch this 
exception in the select implementation on Windows 
itself...

IMO this is also a bugfix candidate for 2.2 and 2.1.
History
Date User Action Args
2007-08-23 15:15:21adminlinkissue611464 messages
2007-08-23 15:15:21admincreate