add missing DECREF (thanks, Barry)
diff --git a/Python/compile.c b/Python/compile.c
index 3dae4c8..3f12e41 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -4477,6 +4477,7 @@
 			Py_DECREF(d);
 			return -1;
 		}
+		Py_DECREF(d);
 		if (st->st_cur_type == TYPE_FUNCTION) {
 			if ((l = PyList_New(0)) == NULL)
 				return -1;