diff options
Diffstat (limited to 'Tools/pybench/Lists.py')
-rw-r--r-- | Tools/pybench/Lists.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/pybench/Lists.py b/Tools/pybench/Lists.py index 4c18e99..844612f 100644 --- a/Tools/pybench/Lists.py +++ b/Tools/pybench/Lists.py @@ -4,7 +4,7 @@ class SimpleListManipulation(Test): version = 0.3 operations = 5* (6 + 6 + 6) - rounds = 60000 + rounds = 600*45 def test(self): @@ -132,7 +132,7 @@ class ListSlicing(Test): version = 0.4 operations = 25*(3+1+2+1) - rounds = 400 + rounds = 4*45 def test(self): @@ -169,7 +169,7 @@ class SmallLists(Test): version = 0.3 operations = 5*(1+ 6 + 6 + 3 + 1) - rounds = 60000 + rounds = 600*15 def test(self): |