summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-05-17 22:49:41 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-05-17 22:49:41 +0000
commit1b425c5c98cfd68dff1741e35cb4e846b78fbd99 (patch)
tree59f09b8112e5da0359e728dcb57841dceac75366 /numpy/core/src
parenta27f468bd852b6ff7cce4740c2980b5e66081e41 (diff)
downloadnumpy-1b425c5c98cfd68dff1741e35cb4e846b78fbd99.tar.gz
Rename fromflat to unravel_index. Add argwhere function. Change where docstring to reflect truth.
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/multiarraymodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/multiarraymodule.c b/numpy/core/src/multiarraymodule.c
index 99e98cd35..aeb9860ee 100644
--- a/numpy/core/src/multiarraymodule.c
+++ b/numpy/core/src/multiarraymodule.c
@@ -5801,7 +5801,7 @@ PyArray_Where(PyObject *condition, PyObject *x, PyObject *y)
static char doc_where[] = "where(condition, | x, y) is shaped like condition"\
" and has elements of x and y where condition is respectively true or"\
" false. If x or y are not given, then it is equivalent to"\
- " nonzero(condition).";
+ " condition.nonzero().";
static PyObject *
array_where(PyObject *ignored, PyObject *args)