Guido van Rossum wrote:
> I'm beginning to settle on the following:
> 
> 1. concrete types: bytes (immutable) and bytearray (mutable)
> 2. their common ABC: ByteString (derives from Sequence)

I prefer ByteSequence. Bytes and buffer are a sequence of bytes.

> 3. the ABC corresponding to buffer-API objects: MemoryBlock

What do you think about RawData, RawBlock, RawView or RawSequence? From
my point of view a PyBuffer allows me to access the raw data of a
PyString or PyBytes.

Christian
_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to