Message84892
I still get some occasional EBADF failures when running pyftpdlib test
suite by using poll().
I think that it makes more sense moving the:
if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
obj.handle_close()
...lines at the top and return if handle_close() is called, as I did in
the patch attached to issue 4501, which is:
if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
obj.handle_close()
else:
if flags & select.POLLIN:
obj.handle_read_event()
if flags & select.POLLOUT:
obj.handle_write_event()
if flags & select.POLLPRI:
obj.handle_expt_event() |
|
Date |
User |
Action |
Args |
2009-03-31 20:32:49 | giampaolo.rodola | set | recipients:
+ giampaolo.rodola, tim.peters, akuchling, brett.cannon, gregory.p.smith, anadelonbrin, josiahcarlson, ajaksu2, alexer |
2009-03-31 20:32:49 | giampaolo.rodola | set | messageid: <1238531569.15.0.470101675632.issue1161031@psf.upfronthosting.co.za> |
2009-03-31 20:32:47 | giampaolo.rodola | link | issue1161031 messages |
2009-03-31 20:32:47 | giampaolo.rodola | create | |
|