From c1a3fcc07c6b0de34668831676813b96e355fffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Magimel?= Date: Mon, 13 Apr 2015 11:32:10 +0200 Subject: DOC, MAINT: fix typo in np.insert docstring --- numpy/lib/function_base.py | 1 + 1 file changed, 1 insertion(+) (limited to 'numpy/lib/function_base.py') 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], -- cgit v1.2.1