[issue1541] Bad OOB data management when using asyncore with select.poll()

2009-04-29 Thread Georg Brandl
Georg Brandl added the comment: Setting #4501 as superseder. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed superseder: -> asyncore's urgent data management and connection closed events are broken when using poll() ___ P

[issue1541] Bad OOB data management when using asyncore with select.poll()

2008-12-03 Thread Giampaolo Rodola'
Giampaolo Rodola' <[EMAIL PROTECTED]> added the comment: This is a duplicate of #4501 which provides a better patch. ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue1541] Bad OOB data management when using asyncore with select.poll()

2008-10-02 Thread Josiah Carlson
Josiah Carlson <[EMAIL PROTECTED]> added the comment: 3.0 is a no-go, no non-documentation changes allowed. ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue1541] Bad OOB data management when using asyncore with select.poll()

2008-10-02 Thread Josiah Carlson
Josiah Carlson <[EMAIL PROTECTED]> added the comment: While handle_expt() is documented has only being called when OOB data is known, it has become the catch-all for "something strange is happening on the socket". The reason it wasn't changed/fixed in Python 2.6 is because a new method would

[issue1541] Bad OOB data management when using asyncore with select.poll()

2008-10-01 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' <[EMAIL PROTECTED]>: -- nosy: +josiah.carlson ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-li

[issue1541] Bad OOB data management when using asyncore with select.poll()

2008-01-28 Thread A.M. Kuchling
Changes by A.M. Kuchling: -- assignee: -> akuchling nosy: +akuchling __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsub

[issue1541] Bad OOB data management when using asyncore with select.poll()

2008-01-28 Thread A.M. Kuchling
Changes by A.M. Kuchling: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue1541] Bad OOB data management when using asyncore with select.poll()

2007-12-02 Thread billiejoex
New submission from billiejoex: asyncore's module readwrite() function, used when invoking asyncore.loop(use_poll=1), erroneously calls handle_read_event() when receiving OOB (Out Of Band) data. handle_expt_event() should be called instead. The patch in attachment does that. In addition I stron