circuitpython/tests/internal_bench/bytebuf-3-bytarray_map.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
240 B
Python
Raw Normal View History

# Doing some operation on bytearray
# No joins, but still map().
import bench
2021-03-15 09:57:36 -04:00
def test(num):
2021-03-15 09:57:36 -04:00
for i in iter(range(num // 10000)):
ba = bytearray(b"\0" * 1000)
ba2 = bytearray(map(lambda x: x + 1, ba))
2021-03-15 09:57:36 -04:00
bench.run(test)