Lines Matching defs:other
33 * other data elements besides the one being appended or popped.
67 * be larger than the other.
472 deque_inplace_concat(dequeobject *deque, PyObject *other)
476 result = deque_extend(deque, other);
529 deque_concat(dequeobject *deque, PyObject *other)
534 rv = PyObject_IsInstance(other, (PyObject *)&deque_type);
539 Py_TYPE(other)->tp_name);
547 result = deque_extend((dequeobject *)new_deque, other);
745 as a primitive for other methods.
751 append on the other. However, a pop/append pair is unnecessarily slow
2139 PyObject *self, *other;
2142 other = right;
2146 other = left;
2148 if (!PyDict_Check(other)) {