diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-14 20:20:56 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-14 20:20:56 +0000 |
commit | 583673340f922a616812a88db27e44358f338b70 (patch) | |
tree | 9ebd86e6d57d667316987b9a8e04efe1d03f9f40 | |
parent | a06ddf3e22ee65fe4009c8f0f304d4b26143e600 (diff) | |
download | numpy-583673340f922a616812a88db27e44358f338b70.tar.gz |
Fix == --> = error in ufuncobject.c
-rw-r--r-- | numpy/core/src/ufuncobject.c | 2 |
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: |