[Python-Dev] PEP 467: Minor API improvements for bytes & bytearray (original) (raw)
Serhiy Storchaka storchaka at gmail.com
Fri Aug 15 21:54:22 CEST 2014
- Previous message: [Python-Dev] PEP 467: Minor API improvements for bytes & bytearray
- Next message: [Python-Dev] PEP 467: Minor API improvements for bytes & bytearray
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
15.08.14 08:50, Nick Coghlan написав(ла):
* add bytes.zeros() and bytearray.zeros() as a replacement
b'\0' * n and bytearray(b'\0') * n look good replacements to me. No need to learn new method. And it works right now.
* add bytes.iterbytes(), bytearray.iterbytes() and memoryview.iterbytes()
What are use cases for this? I suppose that main use case may be writing
the code compatible with 2.7 and 3.x. But in this case you need a
wrapper (because these types in 2.7 have no the iterbytes() method). And
how larger would be an advantage of this method over the
map(bytes.byte, data)
?
- Previous message: [Python-Dev] PEP 467: Minor API improvements for bytes & bytearray
- Next message: [Python-Dev] PEP 467: Minor API improvements for bytes & bytearray
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]