PyTuple_New():  vrbl i no longer referenced, so removed it (which kills
off a new compiler wng under MSVC6).
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 9794bec..a5e37b0 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -27,7 +27,7 @@
 PyTuple_New(register int size)
 {
 	register PyTupleObject *op;
-	int i;
+
 	if (size < 0) {
 		PyErr_BadInternalCall();
 		return NULL;