2014-06-19 15:27:13 -04:00
|
|
|
# Doing some operation on bytearray
|
|
|
|
# Pretty weird way - map bytearray thru function, but make sure that
|
|
|
|
# function return bytes of size 1, then join them together. Surely,
|
|
|
|
# this is slowest way to do it.
|
|
|
|
import bench
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2014-06-19 15:27:13 -04:00
|
|
|
def test(num):
|
2021-03-15 09:57:36 -04:00
|
|
|
for i in iter(range(num // 10000)):
|
2014-06-19 15:27:13 -04:00
|
|
|
ba = bytearray(b"\0" * 1000)
|
2021-03-15 09:57:36 -04:00
|
|
|
ba2 = b"".join(map(lambda x: bytes([x + 1]), ba))
|
|
|
|
|
2014-06-19 15:27:13 -04:00
|
|
|
|
|
|
|
bench.run(test)
|