diff options
Diffstat (limited to 'Tools/pybench/systimes.py')
-rw-r--r-- | Tools/pybench/systimes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pybench/systimes.py b/Tools/pybench/systimes.py index bf07e36..5478c28 100644 --- a/Tools/pybench/systimes.py +++ b/Tools/pybench/systimes.py @@ -181,7 +181,7 @@ def processtime(): def some_workload(): x = 0L - for i in xrange(10000000L): + for i in range(10000000L): x = x + 1L def test_workload(): |