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 giampaolo.rodola
Recipients giampaolo.rodola, josiah.carlson, josiahcarlson
Date 2008-09-03.13:26:25
SpamBayes Score 5.8677215e-06
Marked as misclassified No
Message-id <1220448391.23.0.861310246092.issue3764@psf.upfronthosting.co.za>
In-reply-to
Content
I don't know if this is intentional but I point it out anyway in case
this is wrong (as I think):

asyncore.py of Python 2.6 trunk on line 104 contains:

        if flags & select.POLLHUP:
            obj.handle_close()

...while the python 3.0 version is different:

        if flags & select.POLLHUP:
            obj.handle_close_event()
History
Date User Action Args
2008-09-03 13:26:31giampaolo.rodolasetrecipients: + giampaolo.rodola, josiahcarlson, josiah.carlson
2008-09-03 13:26:31giampaolo.rodolasetmessageid: <1220448391.23.0.861310246092.issue3764@psf.upfronthosting.co.za>
2008-09-03 13:26:26giampaolo.rodolalinkissue3764 messages
2008-09-03 13:26:25giampaolo.rodolacreate