fix mem leak (localmap in optimize)
diff --git a/Python/compile.c b/Python/compile.c
index 07c514c..93d5b6d 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -2593,6 +2593,7 @@
 			cur_instr[1] = i & 0xff;
 			cur_instr[2] = (i>>8) & 0xff;
 			fast_reserved = 1;
+			DECREF(localmap);
 			continue;
 		}
 		if (!fast_reserved)