summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Taylor <juliantaylor108@gmail.com>2014-06-02 22:04:57 +0200
committerJulian Taylor <juliantaylor108@gmail.com>2014-06-02 22:04:57 +0200
commit5e7e24e3959e5b44218751f016b5b912e2b9c7fa (patch)
tree586ec27eabe5b21c4865fd985ba3b048a1988585
parentdc5a148854476ece243205f05e09fd1218692205 (diff)
parent38dda9dba36401d3b5005d3442e70b033cf9a26d (diff)
downloadnumpy-5e7e24e3959e5b44218751f016b5b912e2b9c7fa.tar.gz
Merge pull request #4770 from charris/meshgrid-doc-maintenance
DOC: Fix indentation and add missing blank lines for meshgrid doc.
-rw-r--r--numpy/lib/function_base.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 67e55262e..8953eebd5 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -3288,10 +3288,12 @@ def meshgrid(*xi, **kwargs):
indexing : {'xy', 'ij'}, optional
Cartesian ('xy', default) or matrix ('ij') indexing of output.
See Notes for more details.
- .. versionadded:: 1.7.0
+
+ .. versionadded:: 1.7.0
sparse : bool, optional
- If True a sparse grid is returned in order to conserve memory.
- Default is False.
+ If True a sparse grid is returned in order to conserve memory.
+ Default is False.
+
.. versionadded:: 1.7.0
copy : bool, optional
If False, a view into the original arrays are returned in order to
@@ -3300,7 +3302,8 @@ def meshgrid(*xi, **kwargs):
arrays. Furthermore, more than one element of a broadcast array
may refer to a single memory location. If you need to write to the
arrays, make copies first.
- .. versionadded:: 1.7.0
+
+ .. versionadded:: 1.7.0
Returns
-------