| 737 | |
| 738 | #ifdef DEBUG_COPY_ND_ARRAY |
| 739 | void |
| 740 | dump_dims(int rank, npy_intp const *dims) |
| 741 | { |
| 742 | int i; |
| 743 | printf("["); |
| 744 | for (i = 0; i < rank; ++i) { |
| 745 | printf("%3" NPY_INTP_FMT, dims[i]); |
| 746 | } |
| 747 | printf("]\n"); |
| 748 | } |
| 749 | void |
| 750 | dump_attrs(const PyArrayObject *obj) |
| 751 | { |
no outgoing calls
no test coverage detected