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.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index ad18f18c8..eba532735 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -4125,6 +4125,13 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('reshape',
--------
numpy.reshape : equivalent function
+ Notes
+ -----
+ Unlike the free function `numpy.reshape`, this method on `ndarray` allows
+ the elements of the shape parameter to be passed in as separate arguments.
+ For example, ``a.reshape(10, 11)`` is equivalent to
+ ``a.reshape((10, 11))``.
+
"""))