summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-02-14 00:44:38 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-02-14 00:44:38 +0000
commitadcc8b80b9c60136aef3b37891219b6e504398fc (patch)
tree1cc8b2292585db0edacaa97054b6dc0d42ea7f5c /numpy/core/src/arraymethods.c
parent3eae4c1ea4d1fb2f756f339221316feb91cbc778 (diff)
downloadnumpy-adcc8b80b9c60136aef3b37891219b6e504398fc.tar.gz
Fix typo.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r--numpy/core/src/arraymethods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c
index bb35a6575..4c077bbcd 100644
--- a/numpy/core/src/arraymethods.c
+++ b/numpy/core/src/arraymethods.c
@@ -1532,7 +1532,7 @@ array_newbyteorder(PyArrayObject *self, PyObject *args)
new = PyArray_DescrNewByteorder(self->descr, endian);
if (!new) return NULL;
- return PyArray_View(self, new, NULL));
+ return PyArray_View(self, new, NULL);
}