diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2019-04-13 14:07:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-13 14:07:56 -0700 |
commit | cc8b978cc3c0abe57c3784b99302a04f2c2701d9 (patch) | |
tree | 12ee0cac78c84df32027fd6cafec49639eebdaad | |
parent | b18e32efc3f5b77630a1d4f05399fc15c69831b3 (diff) | |
parent | 6dac2d6a4a061a39cc41f93641c0c29085cd10a6 (diff) | |
download | numpy-cc8b978cc3c0abe57c3784b99302a04f2c2701d9.tar.gz |
Merge pull request #13323 from seberg/ufunc-at-large-iteration
BUG: ufunc.at iteration variable size fix
-rw-r--r-- | numpy/core/src/umath/ufunc_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/ufunc_object.c b/numpy/core/src/umath/ufunc_object.c index f5084e6b3..6a96fe296 100644 --- a/numpy/core/src/umath/ufunc_object.c +++ b/numpy/core/src/umath/ufunc_object.c @@ -5572,7 +5572,7 @@ ufunc_at(PyUFuncObject *ufunc, PyObject *args) PyUFuncGenericFunction innerloop; void *innerloopdata; - int i; + npy_intp i; int nop; /* override vars */ |