[Python-Dev] buffer objects
Fredrik Lundh
fredrik@pythonware.com
Thu, 2 May 2002 14:37:46 +0200
scott wrote:
> I look at buffers as mutable byte-strings. Having buffers =
pickle/unpickle
> (without a temporary copy) would avoid most of the questions about =
data
> types/sizes, endian-ness, ..., while allowing things which built on =
top of
> buffers (array modules for instance) to pickle efficiently.
umm. pickles are supposed to be machine-independent, so how can you
pickle stuff built on buffers *without* taking types/sizes/endianess =
into
account?
</F>