Lines Matching +defs:other +defs:kwds
163 builtin types (other than the base object type). Doing so results in
186 interpreter (e.g. **kwds) faces a challenge. Such any effort must
421 with some other implementations, that situation may lead to undefined
739 The same must be done for any other OrderedDict operations where
863 PyObject *other;
866 other = right;
870 other = left;
872 if (!PyDict_Check(other)) {
887 odict_inplace_or(PyObject *self, PyObject *other)
889 if (mutablemapping_update_arg(self, other) < 0) {
1518 odict_init(PyObject *self, PyObject *args, PyObject *kwds)
1532 res = odict_update(self, args, kwds);
2270 PyObject *other = PyTuple_GET_ITEM(args, 0); /* borrowed reference */
2271 assert(other != NULL);
2272 Py_INCREF(other);
2273 res = mutablemapping_update_arg(self, other);
2274 Py_DECREF(other);