summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 3557c00a3..14cd2a890 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -2421,8 +2421,9 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('flatten',
Parameters
----------
- order : {'C', 'F'}, optional
- Whether to flatten in C (row-major) or Fortran (column-major) order.
+ order : {'C', 'F', 'A'}, optional
+ Whether to flatten in C (row-major), Fortran (column-major) order,
+ or preserve the C/Fortran ordering from `a`.
The default is 'C'.
Returns