[issue17925] asynchat.async_chat.initiate_send : del deque[0] is not safe

Pierrick Koch report at bugs.python.org
Sun Jun 16 22:54:44 CEST 2013


Pierrick Koch added the comment:

last patch, replaced:

  self.producer_fifo.appendleft([data, first])

by:

  self.producer_fifo.extendleft([data, first])

----------
Added file: http://bugs.python.org/file30612/cpython.asyncore_3.patch

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


More information about the Python-bugs-list mailing list