| 1242 | } |
| 1243 | |
| 1244 | static inline PyObject* |
| 1245 | multiiter_wrong_number_of_args(void) |
| 1246 | { |
| 1247 | return PyErr_Format(PyExc_ValueError, |
| 1248 | "Need at least 0 and at most %d " |
| 1249 | "array objects.", NPY_MAXARGS); |
| 1250 | } |
| 1251 | |
| 1252 | /* |
| 1253 | * Common implementation for all PyArrayMultiIterObject constructors. |
no outgoing calls
no test coverage detected