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 josiahcarlson
Recipients MrJean1, alanmcintyre, donmez, facundobatista, giampaolo.rodola, josiahcarlson, mark.dickinson, r.david.murray
Date 2009-05-07.20:03:02
SpamBayes Score 0.0015231747
Marked as misclassified No
Message-id <1241726583.51.0.645625726051.issue5798@psf.upfronthosting.co.za>
In-reply-to
Content
Mark, try this:

        if flags & select.POLLIN and (obj.connected or obj.accepting):
            obj.handle_read_event()
        if flags & select.POLLOUT and obj.connected:
            obj.handle_write_event()
        if flags & select.POLLPRI and obj.connected:
            obj.handle_expt_event()
        if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
            obj.handle_close()
History
Date User Action Args
2009-05-07 20:03:03josiahcarlsonsetrecipients: + josiahcarlson, facundobatista, mark.dickinson, alanmcintyre, giampaolo.rodola, donmez, MrJean1, r.david.murray
2009-05-07 20:03:03josiahcarlsonsetmessageid: <1241726583.51.0.645625726051.issue5798@psf.upfronthosting.co.za>
2009-05-07 20:03:02josiahcarlsonlinkissue5798 messages
2009-05-07 20:03:02josiahcarlsoncreate