Hi,
It looks like the buffer argument that's passed in isn't being passed into the underlying readinto() call. This causes a TypeError when Python tries to invoke the function:
|
return self._f.readinto() |
(this gets exposed when you're using Pickle protocol 5, and right now it fails)
Thanks!
Hi,
It looks like the buffer argument that's passed in isn't being passed into the underlying
readinto()call. This causes aTypeErrorwhen Python tries to invoke the function:s3fs/fs_s3fs/_s3fs.py
Line 154 in 7f95af6
(this gets exposed when you're using Pickle protocol 5, and right now it fails)
Thanks!