summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Fruchart <fruchart@users.noreply.github.com>2019-05-12 21:01:26 -0500
committerGitHub <noreply@github.com>2019-05-12 21:01:26 -0500
commit59378ca23dd41d5ffe79f812aa9b8bf6b257a8d8 (patch)
tree0468e77f5118700d06a6ba2d8e82af301d3df106
parent28ba5e93869f90bf8e4c6df6418107582946ff93 (diff)
downloadnumpy-59378ca23dd41d5ffe79f812aa9b8bf6b257a8d8.tar.gz
Update numpy/core/src/umath/matmul.c.src
Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
-rw-r--r--numpy/core/src/umath/matmul.c.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/matmul.c.src b/numpy/core/src/umath/matmul.c.src
index 18a82f91e..bc6204772 100644
--- a/numpy/core/src/umath/matmul.c.src
+++ b/numpy/core/src/umath/matmul.c.src
@@ -295,7 +295,7 @@ OBJECT_matmul_inner_noblas(void *_ip1, npy_intp is1_m, npy_intp is1_n,
obj1 = Py_None;
}
if (obj2 == NULL) {
- ip2 = Py_None;
+ obj2 = Py_None;
}
product = PyNumber_Multiply(obj1, obj2);