aboutsummaryrefslogtreecommitdiff
path: root/tests/bench/from_iter-6-bytes_unbound.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bench/from_iter-6-bytes_unbound.py')
-rw-r--r--tests/bench/from_iter-6-bytes_unbound.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/bench/from_iter-6-bytes_unbound.py b/tests/bench/from_iter-6-bytes_unbound.py
deleted file mode 100644
index 20aa55627..000000000
--- a/tests/bench/from_iter-6-bytes_unbound.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import bench
-
-def test(num):
- for i in iter(range(num//10000)):
- l = [0] * 1000
- l2 = bytes(map(lambda x: x, l))
-
-bench.run(test)