Martin Panter added the comment:

If you don’t know how large the buffer is when you call zlib.decompress(), 
there may be copying involved as the buffer is expanded. Have you found that 
the copying the bytes result into a bytearray is significantly worse than 
expanding a bytearray (e.g. timing results)?

The trouble with this proposal is that to me it doesn’t seem like there is a 
high demand for it. That is why I suggested the more minimal, low-level 
decompress_into() version. I think I would like to hear other opinions.

As for updating GzipFile, that uses an intermediate BufferedReader, so we 
cannot completely avoid copying. But it might be worthwhile updating the 
internal readinto() method anyway. Possibly also with the zipfile module, 
though I am not so familiar with that.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26379>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to