k_mul():  Heh -- I checked in two fixes for the last problem.  Only keep
the good one <wink>.  Also checked in a test-aid by mistake.
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 0f4910e..95e32ce 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -1663,7 +1663,7 @@
 	 */
 
 	/* 1. Allocate result space. */
-	ret = _PyLong_New(asize + bsize + 1);
+	ret = _PyLong_New(asize + bsize);
 	if (ret == NULL) goto fail;
 #ifdef Py_DEBUG
 	/* Fill with trash, to catch reference to uninitialized digits. */
@@ -1769,7 +1769,7 @@
 		return Py_NotImplemented;
 	}
 
-#if 1
+#if 0
 	if (Py_GETENV("KARAT") != NULL)
 		z = k_mul(a, b);
 	else