summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-14 20:20:56 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-14 20:20:56 +0000
commit583673340f922a616812a88db27e44358f338b70 (patch)
tree9ebd86e6d57d667316987b9a8e04efe1d03f9f40
parenta06ddf3e22ee65fe4009c8f0f304d4b26143e600 (diff)
downloadnumpy-583673340f922a616812a88db27e44358f338b70.tar.gz
Fix == --> = error in ufuncobject.c
-rw-r--r--numpy/core/src/ufuncobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/ufuncobject.c b/numpy/core/src/ufuncobject.c
index d7ecb8a75..8cdba7718 100644
--- a/numpy/core/src/ufuncobject.c
+++ b/numpy/core/src/ufuncobject.c
@@ -1870,7 +1870,7 @@ construct_reduce(PyUFuncObject *self, PyArrayObject **arr, PyArrayObject *out,
(PyObject *)aar);
}
else {
- outsize == PyArray_MultiplyList(loop_i, aar->nd-1);
+ outsize = PyArray_MultiplyList(loop_i, aar->nd-1);
}
break;
case UFUNC_ACCUMULATE: