test_division():  Added one larger digits value, to ensure that the
"lopsided Karatsuba" driver also gets some exercise.
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py
index 4602bfb..f5416d3 100644
--- a/Lib/test/test_long.py
+++ b/Lib/test/test_long.py
@@ -92,7 +92,8 @@
     if verbose:
         print "long / * % divmod"
     digits = range(1, maxdigits+1) + range(KARATSUBA_CUTOFF,
-                                           KARATSUBA_CUTOFF + 15)
+                                           KARATSUBA_CUTOFF + 14)
+    digits.append(KARATSUBA_CUTOFF * 3)
     for lenx in digits:
         x = getran(lenx)
         for leny in digits: