summaryrefslogtreecommitdiffstats
path: root/Tools/pybench/systimes.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/pybench/systimes.py')
-rw-r--r--Tools/pybench/systimes.py2
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():