Added NULL function pointers for shift and mask ops.
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index d89e1cb..0966752 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -314,6 +314,12 @@
 	float_pos,	/*nb_positive*/
 	float_abs,	/*nb_absolute*/
 	float_nonzero,	/*nb_nonzero*/
+	0,		/*nb_invert*/
+	0,		/*nb_lshift*/
+	0,		/*nb_rshift*/
+	0,		/*nb_and*/
+	0,		/*nb_xor*/
+	0,		/*nb_or*/
 };
 
 typeobject Floattype = {