diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2006-09-03 02:26:26 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2006-09-03 02:26:26 +0000 |
commit | 6f31fbc4da05ddaec34fde5cd455b5028e60b355 (patch) | |
tree | 289e82844feee7388ef07f2e4b7de79fb1a7f13f /numpy/core/src/arrayobject.c | |
parent | 92abb2700078ae4a4e1da4df8a075e3134a86216 (diff) | |
download | numpy-6f31fbc4da05ddaec34fde5cd455b5028e60b355.tar.gz |
Add new keyword <side> to the searchsorted method and function.
Add documentation thereto.
Cleanup whitespace.
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index c8a750a38..0bfb5a06d 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -2399,9 +2399,9 @@ PyArray_SetMap(PyArrayMapIterObject *mit, PyObject *op) } } - /* Be sure values array is "broadcastable" + /* Be sure values array is "broadcastable" to shape of mit->dimensions, mit->nd */ - + if ((it = (PyArrayIterObject *)\ PyArray_BroadcastToShape(arr, mit->dimensions, mit->nd))==NULL) { Py_DECREF(arr); @@ -4698,7 +4698,7 @@ _check_axis(PyArrayObject *arr, int *axis, int flags) if (temp) *axis = PyArray_NDIM(temp)-1; else *axis = 0; } - else { + else { temp = (PyObject *)arr; Py_INCREF(temp); *axis = 0; @@ -6288,7 +6288,7 @@ array_base_get(PyArrayObject *self) } /* Create a view of a complex array with an equivalent data-type - except it is real instead of complex. + except it is real instead of complex. */ static PyArrayObject * @@ -6301,7 +6301,7 @@ _get_part(PyArrayObject *self, int imag) type = PyArray_DescrFromType(self->descr->type_num - PyArray_NUM_FLOATTYPE); offset = (imag ? type->elsize : 0); - + if (!PyArray_ISNBO(self->descr->byteorder)) { PyArray_Descr *new; new = PyArray_DescrNew(type); @@ -6759,14 +6759,14 @@ _array_small_type(PyArray_Descr *chktype, PyArray_Descr* mintype) { PyArray_Descr *outtype; int outtype_num, save_num; - - if (chktype->type_num > mintype->type_num) + + if (chktype->type_num > mintype->type_num) outtype_num = chktype->type_num; - else + else outtype_num = mintype->type_num; - + save_num = outtype_num; - while(outtype_num < PyArray_NTYPES && + while(outtype_num < PyArray_NTYPES && !(PyArray_CanCastSafely(chktype->type_num, outtype_num) && PyArray_CanCastSafely(mintype->type_num, outtype_num))) outtype_num++; @@ -8627,7 +8627,7 @@ PyArray_BroadcastToShape(PyObject *obj, intp *dims, int nd) PyArrayIterObject *it; int i, diff, j, compat, k; PyArrayObject *ao = (PyArrayObject *)obj; - + if (ao->nd > nd) goto err; compat = 1; diff = j = nd - ao->nd; @@ -8642,7 +8642,7 @@ PyArray_BroadcastToShape(PyObject *obj, intp *dims, int nd) it = (PyArrayIterObject *)_pya_malloc(sizeof(PyArrayIterObject)); PyObject_Init((PyObject *)it, &PyArrayIter_Type); - + if (it == NULL) return NULL; |