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 gvanrossum
Recipients christian.heimes, felipecruz, giampaolo.rodola, gvanrossum, meador.inge, neologix, pitrou, rosslagerwall, sbt
Date 2013-01-08.23:08:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357686517.45.0.197363274476.issue16853@psf.upfronthosting.co.za>
In-reply-to
Content
Please consider my patches instead; it seems our patches crossed.  Merging is now difficult because I already submitted my version to Tulip.  Your version still has a bug: it uses select.kevent(...) twice, where it should just use kevent(...).  Also my version makes fewer syscalls when unregistering a FD that has both read and write events registered.

Regarding the _Key return value: I think it's asking for trouble if the signature of the base class differs from that of the subclass.  The return value may even be useful occasionally.

Given that no spurious FD events are now reported by the unittests, I'm not sure that it is useful to log and ignore them; it may be better to have the exception be raised, as it might expose an app bug, and in my experience it usually ends up in an infinite busy-wait loop once it happens.
History
Date User Action Args
2013-01-08 23:08:37gvanrossumsetrecipients: + gvanrossum, pitrou, giampaolo.rodola, christian.heimes, meador.inge, neologix, rosslagerwall, sbt, felipecruz
2013-01-08 23:08:37gvanrossumsetmessageid: <1357686517.45.0.197363274476.issue16853@psf.upfronthosting.co.za>
2013-01-08 23:08:37gvanrossumlinkissue16853 messages
2013-01-08 23:08:37gvanrossumcreate