From ca059fbcebb498f68ccf5eecd692b4c90a6b4bb7 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Thu, 24 Aug 2006 08:36:48 +0000 Subject: Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy space. --- numpy/core/src/arraymethods.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'numpy/core/src/arraymethods.c') 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, -- cgit v1.2.1