Oops, didn't mean to commit the removal of float_compare!
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 8739551..b3bcaa9 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -852,7 +852,7 @@
 	(printfunc)float_print, 		/* tp_print */
 	0,					/* tp_getattr */
 	0,					/* tp_setattr */
-	0, 		/* tp_compare */
+	(cmpfunc)float_compare, 		/* tp_compare */
 	(reprfunc)float_repr,			/* tp_repr */
 	&float_as_number,			/* tp_as_number */
 	0,					/* tp_as_sequence */