diff options
author | Marc-André Lemburg <mal@egenix.com> | 2006-06-13 18:56:56 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2006-06-13 18:56:56 (GMT) |
commit | 7d9743dd6aebe3da1118ed7f0abb7b9cdc6302ff (patch) | |
tree | 5fd8c25b53d192efbd69cbd42e6ae4016a215db0 /Tools/pybench/Numbers.py | |
parent | ef7fe5f228292733965c87b99d50a21d64c6d196 (diff) | |
download | cpython-7d9743dd6aebe3da1118ed7f0abb7b9cdc6302ff.zip cpython-7d9743dd6aebe3da1118ed7f0abb7b9cdc6302ff.tar.gz cpython-7d9743dd6aebe3da1118ed7f0abb7b9cdc6302ff.tar.bz2 |
Updated to pybench 2.0.
See svn.python.org/external/pybench-2.0 for the original import of that
version.
Note that platform.py was not copied over from pybench-2.0 since
it is already part of Python 2.5.
Diffstat (limited to 'Tools/pybench/Numbers.py')
-rw-r--r-- | Tools/pybench/Numbers.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Tools/pybench/Numbers.py b/Tools/pybench/Numbers.py index a6aea33..10c8940 100644 --- a/Tools/pybench/Numbers.py +++ b/Tools/pybench/Numbers.py @@ -2,7 +2,7 @@ from pybench import Test class CompareIntegers(Test): - version = 0.1 + version = 2.0 operations = 30 * 5 rounds = 120000 @@ -198,9 +198,9 @@ class CompareIntegers(Test): class CompareFloats(Test): - version = 0.1 + version = 2.0 operations = 30 * 5 - rounds = 60000 + rounds = 80000 def test(self): @@ -394,7 +394,7 @@ class CompareFloats(Test): class CompareFloatsIntegers(Test): - version = 0.1 + version = 2.0 operations = 30 * 5 rounds = 60000 @@ -590,9 +590,9 @@ class CompareFloatsIntegers(Test): class CompareLongs(Test): - version = 0.1 + version = 2.0 operations = 30 * 5 - rounds = 60000 + rounds = 70000 def test(self): |