summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-10-24 07:26:55 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-10-24 07:26:55 +0000
commitef8c2a7e22edf179beda65d13c3a35ffc3e90c2a (patch)
tree835a18a74a9b78a0965c94cb93e0722482899fdc /numpy/core/src/arraymethods.c
parent3f4f58619f955e0af1e9c1d73bd1639b6c95e455 (diff)
downloadnumpy-ef8c2a7e22edf179beda65d13c3a35ffc3e90c2a.tar.gz
Fix some typos and allow use of F_CONTIGUOUS and C_CONTIGUOUS in requires.
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 a13da074f..0332aab70 100644
--- a/numpy/core/src/arraymethods.c
+++ b/numpy/core/src/arraymethods.c
@@ -1689,7 +1689,7 @@ array_setflags(PyArrayObject *self, PyObject *args, PyObject *kwds)
if (PyObject_IsTrue(uic)) {
self->flags = flagback;
PyErr_SetString(PyExc_ValueError,
- "cannot set UPDATEIFCOPY" \
+ "cannot set UPDATEIFCOPY " \
"flag to True");
return NULL;
}