summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorSeth Troisi <sethtroisi@google.com>2019-09-25 19:02:05 -0700
committerSeth Troisi <sethtroisi@google.com>2019-09-26 14:03:04 -0700
commit61774458477d0761ddd76aaf84f4b063c7e57029 (patch)
tree289c54dda850a101a9966ca200d84d1db29d8733 /numpy/core/numeric.py
parent965bb0104b24d02b34df4cddde6173e504f1bda2 (diff)
downloadnumpy-61774458477d0761ddd76aaf84f4b063c7e57029.tar.gz
DEP: Complete deprecation of invalid array order
Fixed order=FORTRAN in docs Added release snippet
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py4
1 files changed, 2 insertions, 2 deletions
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
--------