diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-05-24 14:19:36 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-05-24 14:19:36 +0000 |
commit | 9953e3424711f04aced3818b3da3a3fc8ff9d9ed (patch) | |
tree | 091668453b5ea5ee56f98b288315cf7468fe9109 /numpy/core/src/arraymethods.c | |
parent | 17951f6bd81dd22ae56843a95e1edc06d1592a16 (diff) | |
download | numpy-9953e3424711f04aced3818b3da3a3fc8ff9d9ed.tar.gz |
Merge OBJECT_API and MULTIARRAY_API as NUMPY_API.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 10 |
1 files changed, 5 insertions, 5 deletions
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) { |