Skip to content

Commit

Permalink
More cosmetic changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
teoliphant committed Oct 29, 2005
1 parent b170dbb commit cb3a7e2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions THANKS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ Chris Hanley for help with records.py, testing, and bug fixes.
Travis Vaught and Joe Cooper for administration of scipy.org web site and SVN
Eric Firing for bugfixes.
Arnd Baecker for 64-bit testing
David Cooke for code improvements
20 changes: 10 additions & 10 deletions scipy/base/include/scipy/arrayobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -899,16 +899,16 @@ typedef struct {

typedef struct {
PyObject_HEAD
int nd_m1; /* number of dimensions - 1 */
intp index, size;
intp coordinates[MAX_DIMS];/* N-dimensional loop */
intp dims_m1[MAX_DIMS]; /* ao->dimensions - 1 */
intp strides[MAX_DIMS]; /* ao->strides or fake */
intp backstrides[MAX_DIMS];/* how far to jump back */
intp factors[MAX_DIMS]; /* shape factors */
PyArrayObject *ao;
char *dataptr; /* pointer to current item*/
unsigned char contiguous;
int nd_m1; /* number of dimensions - 1 */
intp index, size;
intp coordinates[MAX_DIMS];/* N-dimensional loop */
intp dims_m1[MAX_DIMS]; /* ao->dimensions - 1 */
intp strides[MAX_DIMS]; /* ao->strides or fake */
intp backstrides[MAX_DIMS];/* how far to jump back */
intp factors[MAX_DIMS]; /* shape factors */
PyArrayObject *ao;
char *dataptr; /* pointer to current item*/
Bool contiguous;
} PyArrayIterObject;


Expand Down

0 comments on commit cb3a7e2

Please sign in to comment.