diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-06 00:49:43 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-06 00:49:43 +0000 |
commit | cb2f58fe323d9753b45ecd9f877f6acb99c7c94b (patch) | |
tree | 3fcace566a0808e8d2897c31078faa4334ba041d /scipy/base/src/arraymethods.c | |
parent | 4772f10191f87a3446f4862de6d4b953e0dd95ff (diff) | |
download | numpy-cb2f58fe323d9753b45ecd9f877f6acb99c7c94b.tar.gz |
Field specification possible with two-kinds of dictionaries
Diffstat (limited to 'scipy/base/src/arraymethods.c')
-rw-r--r-- | scipy/base/src/arraymethods.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scipy/base/src/arraymethods.c b/scipy/base/src/arraymethods.c index d4b366709..48979599e 100644 --- a/scipy/base/src/arraymethods.c +++ b/scipy/base/src/arraymethods.c @@ -249,8 +249,6 @@ array_swapaxes(PyArrayObject *self, PyObject *args) return PyArray_SwapAxes(self, axis1, axis2); } -static int array_type_set(PyArrayObject *, PyObject *); - static char doc_getfield[] = "m.getfield(dtype, offset) returns a field "\ " of the given array as a certain type. A field is a view of "\ " the array's data with each itemsize determined by the given type"\ |