Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dabstract.c871 binaryfunc slotw; in binary_op1() local
873 slotw = NB_BINOP(Py_TYPE(w)->tp_as_number, op_slot); in binary_op1()
874 if (slotw == slotv) { in binary_op1()
875 slotw = NULL; in binary_op1()
879 slotw = NULL; in binary_op1()
884 if (slotw && PyType_IsSubtype(Py_TYPE(w), Py_TYPE(v))) { in binary_op1()
885 x = slotw(v, w); in binary_op1()
889 slotw = NULL; in binary_op1()
898 if (slotw) { in binary_op1()
899 PyObject *x = slotw(v, w); in binary_op1()
[all …]