diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-10 13:03:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-10 13:03:55 +0000 |
commit | a085eeb1a16daa01645afaa151225ab4ae66f240 (patch) | |
tree | 26f146b2c1b78c6cc1dff6a2b3d2a3569c9de4c2 /numpy/core/src/arraymethods.c | |
parent | c6f48c8a03c438da6e2d400752eff702d1234cfc (diff) | |
download | numpy-a085eeb1a16daa01645afaa151225ab4ae66f240.tar.gz |
Change name of function -- no re-compile necessary.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c index 2de6e664f..a693f42ef 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -24,7 +24,7 @@ array_take(PyArrayObject *self, PyObject *args, PyObject *kwds) &mode)) return NULL; - return _ARET(PyArray_TakeOut(self, indices, dimension, out, mode)); + return _ARET(PyArray_TakeFrom(self, indices, dimension, out, mode)); } static char doc_fill[] = "a.fill(value) places the scalar value at every "\ @@ -57,7 +57,7 @@ array_put(PyArrayObject *self, PyObject *args, PyObject *kwds) PyArray_ClipmodeConverter, &mode)) return NULL; - return PyArray_PutIn(self, values, indices, mode); + return PyArray_PutTo(self, values, indices, mode); } static char doc_putmask[] = "a.putmask(values, mask) sets a.flat[n] = v[n] "\ |