Skip to content

Commit

Permalink
Replace hard tabs with spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Jul 16, 2008
1 parent 095a7a7 commit a4aa6fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions numpy/core/src/multiarraymodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2144,10 +2144,10 @@ PyArray_CanCoerceScalar(int thistype, int neededtype,
if (from->f->cancastscalarkindto &&
(castlist = from->f->cancastscalarkindto[scalar])) {
while (*castlist != PyArray_NOTYPE)
if (*castlist++ == neededtype) {
Py_DECREF(from);
return 1;
}
if (*castlist++ == neededtype) {
Py_DECREF(from);
return 1;
}
}
Py_DECREF(from);

Expand Down

0 comments on commit a4aa6fa

Please sign in to comment.