diff options
author | Seth Troisi <sethtroisi@google.com> | 2019-09-25 19:02:05 -0700 |
---|---|---|
committer | Seth Troisi <sethtroisi@google.com> | 2019-09-26 14:03:04 -0700 |
commit | 61774458477d0761ddd76aaf84f4b063c7e57029 (patch) | |
tree | 289c54dda850a101a9966ca200d84d1db29d8733 /numpy/core/defchararray.py | |
parent | 965bb0104b24d02b34df4cddde6173e504f1bda2 (diff) | |
download | numpy-61774458477d0761ddd76aaf84f4b063c7e57029.tar.gz |
DEP: Complete deprecation of invalid array order
Fixed order=FORTRAN in docs
Added release snippet
Diffstat (limited to 'numpy/core/defchararray.py')
-rw-r--r-- | numpy/core/defchararray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/defchararray.py b/numpy/core/defchararray.py index d7ecce1b4..a941c5b81 100644 --- a/numpy/core/defchararray.py +++ b/numpy/core/defchararray.py @@ -1840,7 +1840,7 @@ class chararray(ndarray): This constructor creates the array, using `buffer` (with `offset` and `strides`) if it is not ``None``. If `buffer` is ``None``, then constructs a new array with `strides` in "C order", unless both - ``len(shape) >= 2`` and ``order='Fortran'``, in which case `strides` + ``len(shape) >= 2`` and ``order='F'``, in which case `strides` is in "Fortran order". Methods |