NUMPY_API * Get the array of objects being iterated */
| 1140 | * Get the array of objects being iterated |
| 1141 | */ |
| 1142 | NPY_NO_EXPORT PyArrayObject ** |
| 1143 | NpyIter_GetOperandArray(NpyIter *iter) |
| 1144 | { |
| 1145 | /*npy_uint32 itflags = NIT_ITFLAGS(iter);*/ |
| 1146 | /*int ndim = NIT_NDIM(iter);*/ |
| 1147 | int nop = NIT_NOP(iter); |
| 1148 | |
| 1149 | return NIT_OPERANDS(iter); |
| 1150 | } |
| 1151 | |
| 1152 | /*NUMPY_API |
| 1153 | * Returns a view to the i-th object with the iterator's internal axes |
no outgoing calls
no test coverage detected