diff options
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. |