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