PyImport_ReloadModule(): Nailed a small memory leak.  In the
else-clause of the subname test, the parentname object was never
DECREF'd.
diff --git a/Python/import.c b/Python/import.c
index feed81c..936cbda 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1800,6 +1800,7 @@
 		if (parentname == NULL)
 			return NULL;
 		parent = PyDict_GetItem(modules, parentname);
+		Py_DECREF(parentname);
 		if (parent == NULL) {
 			PyErr_Format(PyExc_ImportError,
 			    "reload(): parent %.200s not in sys.modules",