summaryrefslogtreecommitdiff
path: root/Tools/pybench/Empty.py
diff options
context:
space:
mode:
authorSteve Holden <steve@holdenweb.com>2006-05-26 18:26:21 +0000
committerSteve Holden <steve@holdenweb.com>2006-05-26 18:26:21 +0000
commitd05e5468501ff572a55349a584a28d09f9d7abb3 (patch)
tree35ac0c190daef873dac46b960928354abdad7067 /Tools/pybench/Empty.py
parent9c0e9c089c758bc9b64f0379bc93f8ea6740eb53 (diff)
downloadcpython-git-d05e5468501ff572a55349a584a28d09f9d7abb3.tar.gz
Revert tests to MAL's original round sizes to retiain comparability
from long ago and far away. Stop calling this pybench 1.4 because it isn't. Remove the empty test, which was a bad idea.
Diffstat (limited to 'Tools/pybench/Empty.py')
-rwxr-xr-xTools/pybench/Empty.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/Tools/pybench/Empty.py b/Tools/pybench/Empty.py
deleted file mode 100755
index 9cb34ac3b0..0000000000
--- a/Tools/pybench/Empty.py
+++ /dev/null
@@ -1,22 +0,0 @@
-from pybench import Test
-
-class EmptyTest(Test):
- """This is just here as a potential measure of repeatability."""
-
- version = 0.3
- operations = 1
- rounds = 60000
-
- def test(self):
-
- l = []
- for i in xrange(self.rounds):
- pass
-
-
- def calibrate(self):
-
- l = []
-
- for i in xrange(self.rounds):
- pass