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/Lookups.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/Lookups.py')
-rw-r--r-- | Tools/pybench/Lookups.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/pybench/Lookups.py b/Tools/pybench/Lookups.py index e5529cd..f20e7da 100644 --- a/Tools/pybench/Lookups.py +++ b/Tools/pybench/Lookups.py @@ -2,7 +2,7 @@ from pybench import Test class SpecialClassAttribute(Test): - version = 0.3 + version = 2.0 operations = 5*(12 + 12) rounds = 100000 @@ -183,7 +183,7 @@ class SpecialClassAttribute(Test): class NormalClassAttribute(Test): - version = 0.3 + version = 2.0 operations = 5*(12 + 12) rounds = 100000 @@ -369,7 +369,7 @@ class NormalClassAttribute(Test): class SpecialInstanceAttribute(Test): - version = 0.3 + version = 2.0 operations = 5*(12 + 12) rounds = 100000 @@ -557,7 +557,7 @@ class SpecialInstanceAttribute(Test): class NormalInstanceAttribute(Test): - version = 0.3 + version = 2.0 operations = 5*(12 + 12) rounds = 100000 @@ -745,7 +745,7 @@ class NormalInstanceAttribute(Test): class BuiltinMethodLookup(Test): - version = 0.3 + version = 2.0 operations = 5*(3*5 + 3*5) rounds = 70000 |