Lines Matching +defs:other +defs:kwds
33 * other data elements besides the one being appended or popped.
67 * be larger than the other.
152 deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
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
1742 dequeiter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1884 dequereviter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
2139 PyObject *self, *other;
2142 other = right;
2146 other = left;
2148 if (!PyDict_Check(other)) {
2183 defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
2208 result = PyDict_Type.tp_init(self, newargs, kwds);