def _recv(self, size):
''' Reads data from the underlying descriptor
:param size: The number of bytes to read
:return: The bytes read
'''
return self.socket.read(1234)
should be
def _recv(self, size):
''' Reads data from the underlying descriptor
:param size: The number of bytes to read
:return: The bytes read
'''
return self.socket.read(size)
patch attached.
Original issue reported on code.google.com by jjconti@gmail.com on 12 Jul 2010 at 1:34
Original issue reported on code.google.com by
jjconti@gmail.com
on 12 Jul 2010 at 1:34Attachments: