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 jemfinch
Recipients
Date 2003-08-31.07:31:15
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The select module only allows lists, not any 
iterable.  While this may slightly increase efficiency 
for the select.select() function itself, for many 
applications passing select.select a sets.Set would 
probably be much more efficient (i.e., when things 
are being added/removed from the readable or 
writable lists quite often, the O(n) removal of lists 
would certainly be worse than the O(1) removal of 
sets.) 
History
Date User Action Args
2007-08-23 16:07:08adminlinkissue798046 messages
2007-08-23 16:07:08admincreate