diff options
author | François Magimel <francois.magimel@etu.enseeiht.fr> | 2015-04-13 11:32:10 +0200 |
---|---|---|
committer | François Magimel <francois.magimel@etu.enseeiht.fr> | 2015-04-13 11:32:10 +0200 |
commit | c1a3fcc07c6b0de34668831676813b96e355fffd (patch) | |
tree | 939a98e487641fe5504021e9401e804bb87c99af /numpy/lib/function_base.py | |
parent | 3c5409e4e38e6034d69d0042bf2a3bc854ef2e53 (diff) | |
download | numpy-c1a3fcc07c6b0de34668831676813b96e355fffd.tar.gz |
DOC, MAINT: fix typo in np.insert docstring
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index b619e9dd0..d22e8c047 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3739,6 +3739,7 @@ def insert(arr, obj, values, axis=None): [3, 5, 3]]) Difference between sequence and scalars: + >>> np.insert(a, [1], [[1],[2],[3]], axis=1) array([[1, 1, 1], [2, 2, 2], |