Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cb3a7e2

Browse files
committed
More cosmetic changes.
1 parent b170dbb commit cb3a7e2

2 files changed

Lines changed: 11 additions & 10 deletions

File tree

THANKS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ Chris Hanley for help with records.py, testing, and bug fixes.
1313
Travis Vaught and Joe Cooper for administration of scipy.org web site and SVN
1414
Eric Firing for bugfixes.
1515
Arnd Baecker for 64-bit testing
16+
David Cooke for code improvements

scipy/base/include/scipy/arrayobject.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -899,16 +899,16 @@ typedef struct {
899899

900900
typedef struct {
901901
PyObject_HEAD
902-
int nd_m1; /* number of dimensions - 1 */
903-
intp index, size;
904-
intp coordinates[MAX_DIMS];/* N-dimensional loop */
905-
intp dims_m1[MAX_DIMS]; /* ao->dimensions - 1 */
906-
intp strides[MAX_DIMS]; /* ao->strides or fake */
907-
intp backstrides[MAX_DIMS];/* how far to jump back */
908-
intp factors[MAX_DIMS]; /* shape factors */
909-
PyArrayObject *ao;
910-
char *dataptr; /* pointer to current item*/
911-
unsigned char contiguous;
902+
int nd_m1; /* number of dimensions - 1 */
903+
intp index, size;
904+
intp coordinates[MAX_DIMS];/* N-dimensional loop */
905+
intp dims_m1[MAX_DIMS]; /* ao->dimensions - 1 */
906+
intp strides[MAX_DIMS]; /* ao->strides or fake */
907+
intp backstrides[MAX_DIMS];/* how far to jump back */
908+
intp factors[MAX_DIMS]; /* shape factors */
909+
PyArrayObject *ao;
910+
char *dataptr; /* pointer to current item*/
911+
Bool contiguous;
912912
} PyArrayIterObject;
913913

914914

0 commit comments

Comments
 (0)