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.