Home
last modified time | relevance | path

Searched refs:slotw (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Objects/
Dabstract.c927 binaryfunc slotw = NULL; local
933 slotw = NB_BINOP(w->ob_type->tp_as_number, op_slot);
934 if (slotw == slotv)
935 slotw = NULL;
938 if (slotw && PyType_IsSubtype(w->ob_type, v->ob_type)) {
939 x = slotw(v, w);
943 slotw = NULL;
950 if (slotw) {
951 x = slotw(v, w);
1044 ternaryfunc slotw = NULL; local
[all …]