This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kbriggs
Recipients janssen, kbk, kbriggs, pitrou
Date 2011-09-22.11:24:35
SpamBayes Score 1.0481083e-07
Marked as misclassified No
Message-id <1316690676.3.0.6803900461.issue7133@psf.upfronthosting.co.za>
In-reply-to
Content
I am still getting this error with SocketServer in Python 2.7.2, even though it looks the same as was fixed in Issue7133:

  File "/usr/local/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock
    self.process_request(request, client_address)
  File "/usr/local/lib/python2.7/SocketServer.py", line 310, in process_request
    self.finish_request(request, client_address)
  File "/usr/local/lib/python2.7/SocketServer.py", line 323, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/usr/local/lib/python2.7/SocketServer.py", line 641, in __init__
    self.finish()
  File "/usr/local/lib/python2.7/SocketServer.py", line 694, in finish
    self.wfile.flush()
  File "/usr/local/lib/python2.7/socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
TypeError: must be string or read-only buffer, not memoryview


Keith
History
Date User Action Args
2011-09-22 11:24:36kbriggssetrecipients: + kbriggs, kbk, janssen, pitrou
2011-09-22 11:24:36kbriggssetmessageid: <1316690676.3.0.6803900461.issue7133@psf.upfronthosting.co.za>
2011-09-22 11:24:35kbriggslinkissue7133 messages
2011-09-22 11:24:35kbriggscreate