diff options
Diffstat (limited to 'tests/bench/var-6-instance-attr.py')
-rw-r--r-- | tests/bench/var-6-instance-attr.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/bench/var-6-instance-attr.py b/tests/bench/var-6-instance-attr.py deleted file mode 100644 index 787ed870fb..0000000000 --- a/tests/bench/var-6-instance-attr.py +++ /dev/null @@ -1,14 +0,0 @@ -import bench - -class Foo: - - def __init__(self): - self.num = 20000000 - -def test(num): - o = Foo() - i = 0 - while i < o.num: - i += 1 - -bench.run(test) |