From adcc8b80b9c60136aef3b37891219b6e504398fc Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 14 Feb 2006 00:44:38 +0000 Subject: Fix typo. --- numpy/core/src/arraymethods.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/src/arraymethods.c') 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); } -- cgit v1.2.1