aboutsummaryrefslogtreecommitdiff
path: root/tests/bench/bytebuf-3-bytarray_map.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bench/bytebuf-3-bytarray_map.py')
-rw-r--r--tests/bench/bytebuf-3-bytarray_map.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/bench/bytebuf-3-bytarray_map.py b/tests/bench/bytebuf-3-bytarray_map.py
deleted file mode 100644
index 078d08e99..000000000
--- a/tests/bench/bytebuf-3-bytarray_map.py
+++ /dev/null
@@ -1,10 +0,0 @@
-# Doing some operation on bytearray
-# No joins, but still map().
-import bench
-
-def test(num):
- for i in iter(range(num//10000)):
- ba = bytearray(b"\0" * 1000)
- ba2 = bytearray(map(lambda x: x + 1, ba))
-
-bench.run(test)