Home | History | Annotate | Download | only in Objects

Lines Matching full:slotw

762     binaryfunc slotw = NULL;
768 slotw = NB_BINOP(w->ob_type->tp_as_number, op_slot);
769 if (slotw == slotv)
770 slotw = NULL;
773 if (slotw && PyType_IsSubtype(w->ob_type, v->ob_type)) {
774 x = slotw(v, w);
778 slotw = NULL;
785 if (slotw) {
786 x = slotw(v, w);
835 ternaryfunc slotw = NULL;
844 slotw = NB_TERNOP(mw, op_slot);
845 if (slotw == slotv)
846 slotw = NULL;
849 if (slotw && PyType_IsSubtype(w->ob_type, v->ob_type)) {
850 x = slotw(v, w, z);
854 slotw = NULL;
861 if (slotw) {
862 x = slotw(v, w, z);
870 if (slotz == slotv || slotz == slotw)