[issue16976] Asyncore/asynchat hangs when used with ssl sockets

2014-06-22 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Yes. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-li

[issue16976] Asyncore/asynchat hangs when used with ssl sockets

2014-06-21 Thread Mark Lawrence
Mark Lawrence added the comment: As issue10084 has been closed "won't fix" then the same must apply here. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue16976] Asyncore/asynchat hangs when used with ssl sockets

2013-01-15 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: asyncore simply does not support SSL. That is tracked in issue 10084. -- ___ Python tracker ___ _

[issue16976] Asyncore/asynchat hangs when used with ssl sockets

2013-01-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16976] Asyncore/asynchat hangs when used with ssl sockets

2013-01-15 Thread Anthony Lozano
Changes by Anthony Lozano : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16976] Asyncore/asynchat hangs when used with ssl sockets

2013-01-15 Thread Anthony Lozano
New submission from Anthony Lozano: If you create a asynchat subclass with a SSL socket asyncore can hang when data larger than the ac_in_buffer_size comes in. What (I think) happens is that asyncore uses a select.select call to determine when to read more data from the socket. On the first c