Added _Fini() routines to free up some memory
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 7f7f507..6f5b625 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -590,3 +590,9 @@
 	0,			/*tp_as_mapping*/
 	(hashfunc)float_hash, /*tp_hash*/
 };
+
+void
+PyFloat_Fini()
+{
+	/* XXX Alas, the free list is not easily and safely freeable */
+}