aboutsummaryrefslogtreecommitdiff
path: root/tests/bench/var-5-class-attr.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bench/var-5-class-attr.py')
-rw-r--r--tests/bench/var-5-class-attr.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/bench/var-5-class-attr.py b/tests/bench/var-5-class-attr.py
deleted file mode 100644
index 02ae874ac..000000000
--- a/tests/bench/var-5-class-attr.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import bench
-
-class Foo:
- num = 20000000
-
-def test(num):
- i = 0
- while i < Foo.num:
- i += 1
-
-bench.run(test)