Lines Matching defs:other
163 builtin types (other than the base object type). Doing so results in
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) {
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);