diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-02-14 00:44:38 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-02-14 00:44:38 +0000 |
commit | adcc8b80b9c60136aef3b37891219b6e504398fc (patch) | |
tree | 1cc8b2292585db0edacaa97054b6dc0d42ea7f5c /numpy/core/src/arraymethods.c | |
parent | 3eae4c1ea4d1fb2f756f339221316feb91cbc778 (diff) | |
download | numpy-adcc8b80b9c60136aef3b37891219b6e504398fc.tar.gz |
Fix typo.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 2 |
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); } |