From 0855dd8938664143fd66835aca94f0b4c6dc9d0a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 6 Aug 2002 17:21:20 +0000 Subject: [PATCH] Bump the LOOPS count. 50,000 iterations takes about 5 seconds on my machine -- that feels just right. --- Lib/test/pystone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/pystone.py b/Lib/test/pystone.py index 6c04b55714..931a307926 100755 --- a/Lib/test/pystone.py +++ b/Lib/test/pystone.py @@ -32,7 +32,7 @@ Version History: """ -LOOPS = 10000 +LOOPS = 50000 from time import clock -- 2.40.0