summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-06 02:12:50 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-06 02:12:50 +0000
commitc8b5a7e9e0d39c225ac3e590d83ebf869d9c1235 (patch)
tree01c150ee7014c8970c2a7f103be13666595a5ec6 /numpy/core/src/arraymethods.c
parent9dd16b4b933636baeb28076d73f4bdd7ab006527 (diff)
downloadnumpy-c8b5a7e9e0d39c225ac3e590d83ebf869d9c1235.tar.gz
Fixed error in setflags and added a few unit tests for test_multiarray
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 98206314f..0760e7af1 100644
--- a/numpy/core/src/arraymethods.c
+++ b/numpy/core/src/arraymethods.c
@@ -1457,7 +1457,7 @@ array_setflags(PyArrayObject *self, PyObject *args, PyObject *kwds)
PyObject *uic=Py_None;
int flagback = self->flags;
- if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OOOO", kwlist,
+ if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OOO", kwlist,
&write, &align, &uic))
return NULL;