summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-24 08:36:48 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-24 08:36:48 +0000
commitca059fbcebb498f68ccf5eecd692b4c90a6b4bb7 (patch)
treef63a853fab72bb5f9146a55a1c71951c5fb74eac /numpy/core/src/arraymethods.c
parent9ab77ec1e9fdd2ebe5dfe2eccd7ad129189ea076 (diff)
downloadnumpy-ca059fbcebb498f68ccf5eecd692b4c90a6b4bb7.tar.gz
Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy space.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r--numpy/core/src/arraymethods.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c
index 8f7bce20d..9cbe5b455 100644
--- a/numpy/core/src/arraymethods.c
+++ b/numpy/core/src/arraymethods.c
@@ -252,8 +252,6 @@ array_min(PyArrayObject *self, PyObject *args, PyObject *kwds)
return PyArray_Min(self, axis, out);
}
-static char doc_abs[] = "a.abs() returns abs(a)";
-
static char doc_swapaxes[] = "a.swapaxes(axis1, axis2) returns new view with axes swapped.";
static PyObject *
@@ -1808,8 +1806,6 @@ static PyMethodDef array_methods[] = {
METH_VARARGS|METH_KEYWORDS, doc_min},
{"ptp", (PyCFunction)array_ptp,
METH_VARARGS|METH_KEYWORDS, doc_ptp},
- {"abs", (PyCFunction)array_absolute,
- METH_VARARGS, doc_abs},
{"mean", (PyCFunction)array_mean,
METH_VARARGS|METH_KEYWORDS, doc_mean},
{"trace", (PyCFunction)array_trace,