STINNER Victor added the comment:

Oh, by the way:

> $ ./python -m timeit  "b = bytearray(); a = b'x'"  "for i in range(10000): b 
> += a"  "bytes(b)"

I'm not sure that it is what you expected: bytearray() is only initialized once 
("setup" of timeit). You probably want to reinitialize at each loop.

----------

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

Reply via email to