10000 STY: Remove unnecessary whitespace changes · 87/numpy@71c7bab · GitHub
[go: up one dir, main page]

Skip to content

Commit 71c7bab

Browse files
committed
STY: Remove unnecessary whitespace changes
1 parent 3043864 commit 71c7bab

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

numpy/core/src/multiarray/nditer_impl.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ typedef npy_int16 npyiter_opitflags;
217217
&(iter)->iter_flexdata + NIT_RESETDATAPTR_OFFSET(itflags, ndim, nop)))
218218
#define NIT_BASEOFFSETS(iter) ((npy_intp *)( \
219219
&(iter)->iter_flexdata + NIT_BASEOFFSETS_OFFSET(itflags, ndim, nop)))
220-
221220
#define NIT_OPERANDS(iter) ((PyArrayObject **)( \
222221
&(iter)->iter_flexdata + NIT_OPERANDS_OFFSET(itflags, ndim, nop)))
223222
#define NIT_OPITFLAGS(iter) ((npyiter_opitflags *)( \

numpy/core/src/multiarray/nditer_pywrap.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,6 @@ static PyObject *npyiter_has_delayed_bufalloc_get(NewNpyArrayIterObject *self)
18121812
"Iterator is invalid");
18131813
return NULL;
18141814
}
1815-
18161815
if (NpyIter_HasDelayedBufAlloc(self->iter)) {
18171816
Py_RETURN_TRUE;
18181817
}
@@ -1971,7 +1970,6 @@ npyiter_seq_item(NewNpyArrayIterObject *self, Py_ssize_t i)
19711970
return NULL;
19721971
}
19731972

1974-
19751973
if (NpyIter_HasDelayedBufAlloc(self->iter)) {
19761974
PyErr_SetString(PyExc_ValueError,
19771975
"Iterator construction used delayed buffer allocation, "

0 commit comments

Comments
 (0)
0