Lines Matching +defs:other +defs:kwds

544 keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds);
547 keyobject_richcompare(PyObject *ko, PyObject *other, int op);
569 keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds)
575 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:K", kwargs, &object))
591 keyobject_richcompare(PyObject *ko, PyObject *other, int op)
600 if (!Py_IS_TYPE(other, Py_TYPE(ko))) {
601 PyErr_Format(PyExc_TypeError, "other argument must be K instance");
607 y = ((keyobject *) other)->object;
629 functools_cmp_to_key(PyObject *self, PyObject *args, PyObject *kwds)
636 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:cmp_to_key", kwargs, &cmp))
813 PyObject *kwds, int typed)
818 kwds_size = kwds ? PyDict_GET_SIZE(kwds) : 0;
854 for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) {
869 for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) {
881 uncached_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)
886 result = PyObject_Call(self->func, args, kwds);
893 infinite_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)
897 PyObject *key = lru_cache_make_key(self->kwd_mark, args, kwds, self->typed);
917 result = PyObject_Call(self->func, args, kwds);
978 For the other two accesses (#2 and #4), calls to __eq__ only occur
979 when some other entry happens to have an exactly matching hash (all
992 bounded_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)
998 key = lru_cache_make_key(self->kwd_mark, args, kwds, self->typed);
1021 result = PyObject_Call(self->func, args, kwds);
1097 We created one other reference when the link was created.
1287 lru_cache_call(lru_cache_object *self, PyObject *args, PyObject *kwds)
1289 return self->wrapper(self, args, kwds);