From 9953e3424711f04aced3818b3da3a3fc8ff9d9ed Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sat, 24 May 2008 14:19:36 +0000 Subject: Merge OBJECT_API and MULTIARRAY_API as NUMPY_API. --- numpy/core/src/arraymethods.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'numpy/core/src/arraymethods.c') diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c index 4927f184b..964c18dbd 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -246,7 +246,7 @@ array_swapaxes(PyArrayObject *self, PyObject *args) /* steals typed reference */ -/*OBJECT_API +/*NUMPY_API Get a subset of bytes from each element of the array */ static PyObject * @@ -295,7 +295,7 @@ array_getfield(PyArrayObject *self, PyObject *args, PyObject *kwds) } -/*OBJECT_API +/*NUMPY_API Set a subset of bytes from each element of the array */ static int @@ -351,7 +351,7 @@ array_setfield(PyArrayObject *self, PyObject *args, PyObject *kwds) /* This doesn't change the descriptor just the actual data... */ -/*OBJECT_API*/ +/*NUMPY_API*/ static PyObject * PyArray_Byteswap(PyArrayObject *self, Bool inplace) { @@ -1351,7 +1351,7 @@ array_setstate(PyArrayObject *self, PyObject *args) return Py_None; } -/*OBJECT_API*/ +/*NUMPY_API*/ static int PyArray_Dump(PyObject *self, PyObject *file, int protocol) { @@ -1376,7 +1376,7 @@ PyArray_Dump(PyObject *self, PyObject *file, int protocol) return 0; } -/*OBJECT_API*/ +/*NUMPY_API*/ static PyObject * PyArray_Dumps(PyObject *self, int protocol) { -- cgit v1.2.1