Fix refleak in __import__("") (probably the cause of the 2 refleaks in
test_builtin.)
diff --git a/Python/import.c b/Python/import.c
index 6a47d95..c3bd275 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1938,6 +1938,8 @@
 		/* If tail is Py_None, both get_parent and load_next found
 		   an empty module name: someone called __import__("") or
 		   doctored faulty bytecode */
+		Py_DECREF(tail);
+		Py_DECREF(head);
 		PyErr_SetString(PyExc_ValueError,
 				"Empty module name");
 		return NULL;