Searched refs:lookup_maybe_method (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeobject.c | 1441 lookup_maybe_method(PyObject *self, _Py_Identifier *attrid, int *unbound) in lookup_maybe_method() function 1469 PyObject *res = lookup_maybe_method(self, attrid, unbound); in lookup_method() 1527 func = lookup_maybe_method(obj, name, &unbound); in call_maybe() 6120 func = lookup_maybe_method(self, &PyId___contains__, &unbound); in slot_sq_contains() 6212 func = lookup_maybe_method(self, &PyId___bool__, &unbound); in slot_nb_bool() 6218 func = lookup_maybe_method(self, &PyId___len__, &unbound); in slot_nb_bool() 6306 func = lookup_maybe_method(self, &PyId___repr__, &unbound); in slot_tp_repr() 6326 func = lookup_maybe_method(self, &PyId___hash__, &unbound); in slot_tp_hash() 6505 func = lookup_maybe_method(self, &name_op[op], &unbound); in slot_tp_richcompare() 6524 func = lookup_maybe_method(self, &PyId___iter__, &unbound); in slot_tp_iter() [all …]
|