Remove unused variable.
diff --git a/Python/compile.c b/Python/compile.c
index a772d79..6d3a479 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -225,7 +225,6 @@
 	/* Intern selected string constants */
 	for (i = gettuplesize(consts); --i >= 0; ) {
 		object *v = gettupleitem(consts, i);
-		int n;
 		char *p;
 		if (!is_stringobject(v))
 			continue;