Lines Matching +defs:other +defs:kwds
1719 some other type.
1757 unicode string from an array of some other type.
1917 static PyObject *array_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
2410 arrayobject* other;
2448 other = NULL;
2452 other = (arrayobject *)value;
2453 needed = Py_SIZE(other);
2454 if (self == other) {
2457 value = array_slice(other, 0, needed);
2464 if (other->ob_descr != self->ob_descr) {
2509 other->ob_item, needed * itemsize);
2556 other->ob_item + i * itemsize,
2614 array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
2623 !_PyArg_NoKeywords("array.array", kwds))
2730 arrayobject *other = (arrayobject *)initial;
2731 memcpy(self->ob_item, other->ob_item, len * other->ob_descr->itemsize);