diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-05-17 22:49:41 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-05-17 22:49:41 +0000 |
commit | 1b425c5c98cfd68dff1741e35cb4e846b78fbd99 (patch) | |
tree | 59f09b8112e5da0359e728dcb57841dceac75366 /numpy/core/src | |
parent | a27f468bd852b6ff7cce4740c2980b5e66081e41 (diff) | |
download | numpy-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.c | 2 |
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) |