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 Matt.Gattis
Recipients Matt.Gattis
Date 2010-03-10.00:29:58
SpamBayes Score 0.009435133
Marked as misclassified No
Message-id <1268181000.19.0.928948348228.issue8104@psf.upfronthosting.co.za>
In-reply-to
Content
>>> view = memoryview(bytearray(bufsize))
>>> while len(view):
...    view = view[sock.recv_into(view,1024):]
...
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
TypeError: recv_into() argument 1 must be pinned buffer, not memoryview
History
Date User Action Args
2010-03-10 00:30:00Matt.Gattissetrecipients: + Matt.Gattis
2010-03-10 00:30:00Matt.Gattissetmessageid: <1268181000.19.0.928948348228.issue8104@psf.upfronthosting.co.za>
2010-03-10 00:29:58Matt.Gattislinkissue8104 messages
2010-03-10 00:29:58Matt.Gattiscreate