From 61774458477d0761ddd76aaf84f4b063c7e57029 Mon Sep 17 00:00:00 2001 From: Seth Troisi Date: Wed, 25 Sep 2019 19:02:05 -0700 Subject: DEP: Complete deprecation of invalid array order Fixed order=FORTRAN in docs Added release snippet --- numpy/core/numeric.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy/core/numeric.py') diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index c395b1348..6d25f864b 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -523,7 +523,7 @@ def isfortran(a): C-ordered arrays evaluate as False even if they are also FORTRAN-ordered. - >>> np.isfortran(np.array([1, 2], order='FORTRAN')) + >>> np.isfortran(np.array([1, 2], order='F')) False """ @@ -938,7 +938,7 @@ def tensordot(a, b, axes=2): Returns ------- output : ndarray - The tensor dot product of the input. + The tensor dot product of the input. See Also -------- -- cgit v1.2.1