[New-bugs-announce] [issue3764] asyncore differences between 2.x and 3.x

Giampaolo Rodola' report at bugs.python.org
Wed Sep 3 15:26:31 CEST 2008


New submission from Giampaolo Rodola' <billiejoex at users.sourceforge.net>:

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()

----------
components: Library (Lib)
messages: 72386
nosy: giampaolo.rodola, josiah.carlson, josiahcarlson
severity: normal
status: open
title: asyncore differences between 2.x and 3.x
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3764>
_______________________________________


More information about the New-bugs-announce mailing list