diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-06-01 00:40:05 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-01 00:40:05 +0000 |
commit | db819d97b7cb4ff27347fd2fd84e826833b58860 (patch) | |
tree | 8f3cd69271d1a540deddce77ef28bc6900405192 /numpy/core/src/arrayobject.c | |
parent | 4b27d2291c67ef476254dba1277ca2e43152165e (diff) | |
download | numpy-db819d97b7cb4ff27347fd2fd84e826833b58860.tar.gz |
Work-around Python bug in complex_number new for subtypes. Also change a few comments.
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index fea1c10c8..d4b84bdfb 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -7326,9 +7326,10 @@ PyArray_IterAllButAxis(PyObject *obj, int axis) adjusted */ /*OBJECT_API - Adjusts previously broadcasted iterators so that the largest axis is not iterated - over. Returns dimension which is largest in the range [0,multi->nd). A -1 - is returned if multi->nd == 0. + Adjusts previously broadcasted iterators so that the largest axis + is not iterated over. + Returns dimension which is largest in the range [0,multi->nd). + A -1 is returned if multi->nd == 0. */ static int PyArray_RemoveLargest(PyArrayMultiIterObject *multi) |