@@ -3602,7 +3602,6 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base)
36023602 COPYNUM (nb_xor );
36033603 COPYNUM (nb_or );
36043604 COPYNUM (nb_int );
3605- COPYNUM (nb_long );
36063605 COPYNUM (nb_float );
36073606 COPYNUM (nb_inplace_add );
36083607 COPYNUM (nb_inplace_subtract );
@@ -4827,7 +4826,6 @@ SLOT1BIN(slot_nb_xor, nb_xor, "__xor__", "__rxor__")
48274826SLOT1BIN (slot_nb_or , nb_or , "__or__" , "__ror__" )
48284827
48294828SLOT0 (slot_nb_int , "__int__" )
4830- SLOT0 (slot_nb_long , "__long__" )
48314829SLOT0 (slot_nb_float , "__float__" )
48324830SLOT1 (slot_nb_inplace_add , "__iadd__" , PyObject * , "O" )
48334831SLOT1 (slot_nb_inplace_subtract , "__isub__" , PyObject * , "O" )
@@ -5443,8 +5441,6 @@ static slotdef slotdefs[] = {
54435441 RBINSLOT ("__ror__" , nb_or , slot_nb_or , "|" ),
54445442 UNSLOT ("__int__" , nb_int , slot_nb_int , wrap_unaryfunc ,
54455443 "int(x)" ),
5446- UNSLOT ("__long__" , nb_long , slot_nb_long , wrap_unaryfunc ,
5447- "int(x)" ),
54485444 UNSLOT ("__float__" , nb_float , slot_nb_float , wrap_unaryfunc ,
54495445 "float(x)" ),
54505446 NBSLOT ("__index__" , nb_index , slot_nb_index , wrap_unaryfunc ,
0 commit comments