analyze_cells():  This no longer compiled under VC 7.1.
Move declaration of local `flags` to top of block.
diff --git a/Python/symtable.c b/Python/symtable.c
index 915324d..7e876d4 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -432,8 +432,9 @@
 	if (!w)
 		return 0;
 	while (PyDict_Next(scope, &pos, &name, &v)) {
+		long flags;
 		assert(PyInt_Check(v));
-		long flags = PyInt_AS_LONG(v);
+		flags = PyInt_AS_LONG(v);
 		if (flags != LOCAL)
 			continue;
 		if (!PyDict_GetItem(free, name))