Comment 1 for bug 716393

Revision history for this message
Andrew Wilkins (axwalk) wrote :

This is due to the use of socket.makefile, which acts like a Python file object, in that it does not return partial results. Rather than use socket.makefile, I'll have to create a new InputStream class which calls the socket.recv method.