Lines Matching defs:value
192 array value at that index wrapped in an appropriate PyObject*.
194 the array value at that index to the raw C data extracted from the PyObject*,
196 appropriate type or value).
1144 Raise ValueError if the value is not present.
1352 Append new value v to the end of the array.
1923 * Unicode character value, like 'i' or 'f' for example, representing an array
1925 * contains the initial value of the array.
2163 * enumeration value.
2179 value: object
2187 PyObject *value)
2213 if (!PyLong_Check(value)) {
2218 protocol = PyLong_AsLong(value);
2406 array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)
2425 if (value == NULL) {
2433 return (*self->ob_descr->setitem)(self, i, value);
2447 if (value == NULL) {
2451 else if (array_Check(value, state)) {
2452 other = (arrayobject *)value;
2457 value = array_slice(other, 0, needed);
2458 if (value == NULL)
2460 ret = array_ass_subscr(self, item, value);
2461 Py_DECREF(value);
2472 Py_TYPE(value)->tp_name);
2760 initialized from the optional initializer value, which must be a list,\n\