diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-24 07:26:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-24 07:26:55 +0000 |
commit | ef8c2a7e22edf179beda65d13c3a35ffc3e90c2a (patch) | |
tree | 835a18a74a9b78a0965c94cb93e0722482899fdc /numpy/core/src/arraymethods.c | |
parent | 3f4f58619f955e0af1e9c1d73bd1639b6c95e455 (diff) | |
download | numpy-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.c | 2 |
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; } |