diff options
Diffstat (limited to 'Tools/pybench/systimes.py')
-rw-r--r-- | Tools/pybench/systimes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/pybench/systimes.py b/Tools/pybench/systimes.py index 5478c28..13bed2f 100644 --- a/Tools/pybench/systimes.py +++ b/Tools/pybench/systimes.py @@ -180,9 +180,9 @@ def processtime(): ### Testing def some_workload(): - x = 0L - for i in range(10000000L): - x = x + 1L + x = 0 + for i in range(10000000): + x = x + 1 def test_workload(): print 'Testing systimes() under load conditions' |