[issue4501] asyncore's urgent data management and connection closed events are broken when using poll()

2009-04-12 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Fixed as part of the work done on issue1161031. -- nosy: +r.david.murray resolution: - duplicate stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue4501] asyncore's urgent data management and connection closed events are broken when using poll()

2009-03-28 Thread intgr
Changes by intgr ma...@juffo.org: -- nosy: +intgr ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4501 ___ ___ Python-bugs-list mailing list

[issue4501] asyncore's urgent data management and connection closed events are broken when using poll()

2008-12-20 Thread Martin v. Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- versions: -Python 2.4, Python 2.5, Python 2.5.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4501 ___

[issue4501] asyncore's urgent data management and connection closed events are broken when using poll()

2008-12-16 Thread Giampaolo Rodola'
Giampaolo Rodola' billiej...@users.sourceforge.net added the comment: IMHO it would be good if this could go in the latest 2.4 and 2.5 upcoming releases while we still have the chance. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4501

[issue4501] asyncore's urgent data management and connection closed events are broken when using poll()

2008-12-15 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' billiej...@users.sourceforge.net: -- versions: +Python 2.4, Python 2.5, Python 2.5.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4501 ___

[issue4501] asyncore's urgent data management and connection closed events are broken when using poll()

2008-12-02 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' [EMAIL PROTECTED]: I discovered that some pyftpdlib [1] tests fail when using poll() instead of select(). The problem is in asyncore.readwrite() function which erroneously calls handle_read_event() in case of a POLLPRI event. The patches modify readwrite()