[Python-Dev] Buffer protocol for io.BytesIO?

Antoine Pitrou solipsis at pitrou.net
Thu Sep 2 22:35:09 CEST 2010


Hello all,

In issue #5506, I originally proposed that io.BytesIO objects support
the buffer protocol, to make it possible to access the internal buffer
without intermediate copies.

Then it came to me then perhaps it would be too automatic. So I'm
currently floating between:
- add implicit buffer protocol support to BytesIO objects
- add explicit buffer protocol support through the call of a
  getbuffer() method, which would return a small intermediate object
  supporting the buffer protocol on behalf of the original BytesIO
  object

What do you think would be better?

Thank you

Antoine.




More information about the Python-Dev mailing list