Added NULL function pointers for shift and mask ops.

This commit is contained in:
Guido van Rossum 1991-10-24 14:55:28 +00:00
parent 006bcd42ac
commit 27acb3379e
1 changed files with 6 additions and 0 deletions

View File

@ -314,6 +314,12 @@ static number_methods float_as_number = {
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 = {