diff options
author | Thomas A Caswell <tcaswell@bnl.gov> | 2014-12-10 11:24:40 -0500 |
---|---|---|
committer | Thomas A Caswell <tcaswell@bnl.gov> | 2014-12-12 14:00:39 -0500 |
commit | ab6b165d06fe74a738b8ac2f60008ccf4820ba94 (patch) | |
tree | 6c2c03dc7987efc05718476efe146163b92b20cf /numpy/core/numeric.py | |
parent | 93ee10ef98936e1fa5386836fd5b34b4b6e4bb68 (diff) | |
download | numpy-ab6b165d06fe74a738b8ac2f60008ccf4820ba94.tar.gz |
DOC : integer -> int doc nitpick
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 85d3751cc..1847300dd 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1150,7 +1150,8 @@ def tensordot(a, b, axes=2): ---------- a, b : array_like, len(shape) >= 1 Tensors to "dot". - axes : integer or (2,) array_like + + axes : int or (2,) array_like * integer_like If an int N, sum over the last N axes of `a` and the first N axes of `b` in order. The sizes of the corresponding axes must match. |