Sequence accessor (set): `object[i] = x`. */
| 1905 | |
| 1906 | /** Sequence accessor (set): `object[i] = x`. */ |
| 1907 | static int Vector_ass_item(VectorObject *self, Py_ssize_t i, PyObject *value) |
| 1908 | { |
| 1909 | return vector_ass_item_internal(self, i, value, false); |
| 1910 | } |
| 1911 | |
| 1912 | /** Sequence slice accessor (get): `x = object[i:j]`. */ |
| 1913 | static PyObject *Vector_slice(VectorObject *self, int begin, int end) |
no test coverage detected