| 139 | } |
| 140 | |
| 141 | static PyObject * |
| 142 | array_fill(PyArrayObject *self, PyObject *args) |
| 143 | { |
| 144 | PyObject *obj; |
| 145 | if (!PyArg_ParseTuple(args, "O:fill", &obj)) { |
| 146 | return NULL; |
| 147 | } |
| 148 | if (PyArray_FillWithScalar(self, obj) < 0) { |
| 149 | return NULL; |
| 150 | } |
| 151 | Py_RETURN_NONE; |
| 152 | } |
| 153 | |
| 154 | static PyObject * |
| 155 | array_put(PyArrayObject *self, PyObject *args, PyObject *kwds) |
nothing calls this directly
no test coverage detected