commit | daec961e091b76b1329077f505aa8db92a027002 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Mon Aug 30 23:18:23 2004 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Mon Aug 30 23:18:23 2004 +0000 |
tree | d1f7e9231f3841f5ecb9f67ef557c7c637ac37e2 | |
parent | 42cd14d04c7d3d88738884823f2bc6bf93701a16 [diff] [blame] |
Changed Karatsuba cutoff to match current reality.
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index cbb0b37..1a04ce9 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py
@@ -6,7 +6,7 @@ SHIFT = 15 BASE = 2 ** SHIFT MASK = BASE - 1 -KARATSUBA_CUTOFF = 35 # from longobject.c +KARATSUBA_CUTOFF = 70 # from longobject.c # Max number of base BASE digits to use in test cases. Doubling # this will more than double the runtime.